/**
 * RU OK? 관리자 페이지 스타일
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    opacity: 0.9;
}

main {
    padding: 40px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.8em;
    color: #667eea;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.status-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 5px solid #667eea;
}

.status-ok {
    color: #28a745;
}

.status-ok h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.status-error {
    color: #dc3545;
    font-weight: bold;
}

.endpoint-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.endpoint {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 5px solid #764ba2;
    transition: transform 0.2s, box-shadow 0.2s;
}

.endpoint:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.endpoint strong {
    display: block;
    color: #667eea;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.endpoint p {
    color: #666;
}

.info-section ul {
    list-style: none;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.info-section li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-section li:last-child {
    border-bottom: none;
}

.info-section strong {
    color: #667eea;
}

footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    header {
        padding: 30px 20px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    main {
        padding: 20px;
    }
    
    .endpoint-list {
        grid-template-columns: 1fr;
    }
}
