/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
.header {
    background: linear-gradient(to right, #ff00cc, #333399);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.3rem;
}

/* Navigation */
/* .nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link-active {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
} */

/* API Links */
.api-links {
    display: flex;
    gap: 0.5rem;
}

/* .api-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: #2e7d32;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.api-link:hover {
    background: #1b5e20;
    transform: translateY(-1px);
} */

/* Main Content */
.main {
    min-height: calc(100vh - 80px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Additional Styles */

.status-heading {
    display: flex;
    justify-content: space-between;
}

.auth-block {
    width: 300px;
    text-align: center;
}

.status-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 1rem 0;
}

.status-info p {
    margin: 0.5rem 0;
}

.endpoints-test {
    margin-top: 20px;
}

.notice {
    background-color: #fff;
    padding: 10px; 
    margin: 10px 0; 
    border-radius: 4px;
}

.notice_alert {
    background-color: #faecec;
}

.notice_ok {
    background-color: #d4edda;
}

.test-buttons {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.btn-primary {
    background: #891daf;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    filter: saturate(1.5);
    /* transform: translateY(-1px); */
}

.test-result {
    margin-top: 1rem;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1rem;
    max-height: 400px;
    overflow: auto;
}

.test-result:empty {
    display: none;
}

.footer {
    background: linear-gradient(to left, #ff00cc, #333399);
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    /* .nav {
        justify-content: center;
    } */
    
    .api-links {
        justify-content: center;
    }
    
    .container {
        padding: 1rem;
    }
}