#sebooth-frontend-manager {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.sebooth-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.header-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 70%;
}

.sebooth-admin-header h2 {
    font-size: 24px;
    color: #1a202c;
    margin: 0;
    font-weight: 700;
}

.header-description {
    font-size: 14px;
    color: #718096;
    margin: 0;
    line-height: 1.5;
}

.btn-create-album {
    background: #2d3748;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-create-album:hover {
    background: #1a202c;
}

.album-card-container {
    display: grid;
    gap: 12px;
}

.album-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.album-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: #cbd5e0;
}

.album-name {
    font-size: 18px;
    color: #1e293b;
    font-weight: 700;
    margin: 0;
}

.album-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}

.btn-copy, .btn-view {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-copy:hover, .btn-view:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.btn-delete {
    background: #fff5f5;
    color: #e53e3e;
    border: 1px solid #fed7d7;
}

.btn-delete:hover {
    background: #e53e3e;
    color: #fff;
}

.copy-link-btn.success-active {
    background: #f0fff4 !important;
    color: #2f855a !important;
    border-color: #c6f6d5 !important;
}

#album-modal {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    width: 350px;
    border: 1px solid #e2e8f0;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin: 15px 0;
    outline: none;
    box-sizing: border-box;
}

.modal-content input:focus {
    border-color: #3182ce;
}

.sebooth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    color: #222427;
}

.sebooth-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.sebooth-total {
    color: #718096;
    background: #f7fafc;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    font-size: 14px;
}

.sebooth-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.photo-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .sebooth-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sebooth-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 640px) {
    .sebooth-admin-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-text-group {
        max-width: 100%;
    }
    
    .btn-create-album {
        width: 100%;
    }
    
    .album-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .album-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-action {
        flex: 1;
        justify-content: center;
    }
}
