/***********************
 * admin-create.html 전용 스타일
 ***********************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: white;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #667eea;
    margin-bottom: 10px;
    text-align: center;
    cursor: pointer;
    /* ✅ 추가 */
    transition: all 0.3s;
    /* ✅ 추가 */
}

/* ✅ 호버 효과 추가 */
h1:hover {
    transform: scale(1.02);
}

h1 a:hover {
    opacity: 0.8;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/***********************
 * 폼 스타일
 ***********************/
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

button {
    width: 100%;
    padding: 15px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/***********************
 * 결과 박스
 ***********************/
.result-box {
    margin-top: 30px;
    padding: 20px;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 10px;
    display: none;
}

.result-box.show {
    display: block;
}

.result-box h3 {
    color: #155724;
    margin-bottom: 15px;
}

.info-item {
    margin: 10px 0;
    padding: 10px;
    background: white;
    border-radius: 5px;
}

.info-item strong {
    color: #667eea;
}

.url-display {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 5px;
    word-break: break-all;
    font-family: monospace;
    margin: 10px 0;
}

/***********************
 * 특수 버튼
 ***********************/
.copy-btn {
    background: #28a745;
    margin-top: 10px;
}

.copy-btn:hover {
    background: #218838;
}

.back-btn {
    background: #6c757d;
    margin-top: 10px;
}

.back-btn:hover {
    background: #5a6268;
}

/***********************
 * 로딩 & 타이머
 ***********************/
.loading {
    text-align: center;
    color: #667eea;
    margin-top: 10px;
    display: none;
}

.loading.show {
    display: block;
}

.timer {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
    margin-top: 5px;
}