.publisher-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

.publisher-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.publisher-header h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
    color: #333;
}

.publisher-header p {
    color: #666;
    margin: 0;
}

.publisher-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.publisher-nav a {
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 25px;
    transition: all 0.2s;
    line-height: 1.2;
    box-sizing: border-box;
}

.publisher-nav a:hover {
    background: #f5f5f5;
    color: #333;
}

.publisher-nav a.active {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.publisher-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.publisher-card-header {
    background: #f9f9f9;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.publisher-card-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.publisher-card-body {
    padding: 20px;
}

.publisher-form-group {
    margin-bottom: 20px;
}

.publisher-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.publisher-form-label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.publisher-form-hint {
    font-size: 13px;
    color: #888;
    font-weight: normal;
    margin-left: 5px;
}

.publisher-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.publisher-form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.publisher-form-control::placeholder {
    color: #aaa;
}

textarea.publisher-form-control {
    min-height: 120px;
    resize: vertical;
}

.publisher-description {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.publisher-btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.publisher-btn-primary {
    background: #3498db;
    color: #fff;
}

.publisher-btn-primary:hover {
    background: #2980b9;
    color: #fff;
}

.publisher-btn-default {
    background: #ecf0f1;
    color: #333;
}

.publisher-btn-default:hover {
    background: #ddd;
}

.publisher-btn-danger {
    background: #e74c3c;
    color: #fff;
}

.publisher-btn-danger:hover {
    background: #c0392b;
    color: #fff;
}

.publisher-btn-success {
    background: #27ae60;
    color: #fff;
}

.publisher-btn-success:hover {
    background: #219a52;
    color: #fff;
}

.publisher-btn-warning {
    background: #f39c12;
    color: #fff;
}

.publisher-btn-warning:hover {
    background: #d68910;
    color: #fff;
}

.publisher-btn-sm {
    padding: 8px 15px;
    font-size: 13px;
}

.publisher-btn-area {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    justify-content: center;
}

.publisher-table {
    width: 100%;
    border-collapse: collapse;
}

.publisher-table th,
.publisher-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.publisher-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.publisher-table tr:hover {
    background: #f9f9f9;
}

.publisher-label {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.publisher-label-pending {
    background: #fff3cd;
    color: #856404;
}

.publisher-label-approved {
    background: #d4edda;
    color: #155724;
}

.publisher-label-rejected {
    background: #f8d7da;
    color: #721c24;
}

.publisher-empty {
    text-align: center;
    padding: 50px 20px;
    color: #888;
}

.publisher-empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.publisher-detail-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.publisher-detail-label {
    width: 120px;
    font-weight: 600;
    color: #666;
    flex-shrink: 0;
}

.publisher-detail-value {
    flex: 1;
}

.publisher-file-preview {
    margin-bottom: 10px;
}

.publisher-file-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
}

.publisher-file-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.publisher-file-link:hover {
    background: #eee;
}

.publisher-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.publisher-alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.publisher-alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.publisher-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.publisher-page-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.publisher-page-header h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
    color: #333;
}

.publisher-page-header p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 반응형 */
@media (max-width: 600px) {
    .publisher-page {
        padding: 15px;
    }

    .publisher-nav {
        flex-direction: column;
    }

    .publisher-detail-row {
        flex-direction: column;
    }

    .publisher-detail-label {
        width: 100%;
        margin-bottom: 5px;
    }

    .publisher-btn-area {
        flex-direction: column;
    }

    .publisher-table {
        font-size: 14px;
    }

    .publisher-table th,
    .publisher-table td {
        padding: 10px;
    }
}
