.down-detector {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-top: 30px;
}

#api-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    text-align: left;
}

.api-item {
    display: flex;
    flex-direction: column;
    background-color: #1e1e1e;
    padding: 15px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.api-item:hover {
    background-color: #282828;
}

.api-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.api-name {
    font-size: 16px;
    color: #ffffff;
}

.status {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    transition: background-color 0.3s ease;
}

.status.up .status-indicator {
    background-color: #28a745;
}

.status.down .status-indicator {
    background-color: #dc3545;
}

.status-text {
    color: #a0a0a0;
}

.status.up .status-text {
    color: #28a745;
}

.status.down .status-text {
    color: #dc3545;
}
