/* Admin Styles */
.admin-body {
    background: var(--brand-pink);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.admin-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    background: var(--brand-pink);
    color: white;
    padding: 2rem;
    text-align: center;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.login-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.login-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.login-header p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.login-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--brand-pink);
    width: 16px;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-pink);
    background: white;
    box-shadow: 0 0 0 3px rgba(205, 54, 114, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.login-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.back-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--brand-pink);
}

.back-link i {
    margin-right: 0.5rem;
}

/* Admin Dashboard Styles */
.admin-dashboard {
    min-height: 100vh;
    background: var(--bg-light);
}

.admin-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-pink);
}

.admin-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-user span {
    color: var(--text-dark);
    font-weight: 500;
}

.logout-btn {
    background: none;
    border: 1px solid var(--brand-pink);
    color: var(--brand-pink);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.logout-btn:hover {
    background: var(--brand-pink);
    color: white;
}

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

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--brand-pink);
    border-bottom-color: var(--brand-pink);
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-icon.pending {
    background: #f59e0b;
}

.stat-icon.completed {
    background: #10b981;
}

.stat-icon.total {
    background: var(--brand-pink);
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.data-table {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.table-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.table-container {
    overflow-x: auto;
}

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

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}

th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    color: var(--text-light);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-contacted {
    background: #dbeafe;
    color: #1e40af;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.status-unread {
    background: #fee2e2;
    color: #991b1b;
}

.status-read {
    background: #dbeafe;
    color: #1e40af;
}

.status-responded {
    background: #d1fae5;
    color: #065f46;
}

.action-btn {
    background: none;
    border: 1px solid #d1d5db;
    padding: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.action-btn:hover {
    background: var(--brand-pink);
    border-color: var(--brand-pink);
    color: white;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--text-dark);
}

/* Loading States */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--text-light);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f4f6;
    border-top: 2px solid var(--brand-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CMS Styles */
.cms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cms-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-bottom: 1px solid #e5e7eb;
}

.cms-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cms-header i {
    color: var(--brand-pink);
}

.btn-save {
    background: var(--brand-pink);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-save:hover {
    background: #b02d63;
    transform: translateY(-1px);
}

.cms-body {
    padding: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-pink);
    box-shadow: 0 0 0 3px rgba(205, 54, 114, 0.1);
}

/* Color Picker Styles */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.color-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.color-picker input[type="color"] {
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

.color-picker input[type="text"] {
    flex: 1;
    font-family: monospace;
    text-transform: uppercase;
}

.color-preview {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
}

.color-presets {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.color-presets h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.preset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.preset-item {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.preset-item:hover {
    border-color: var(--brand-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.preset-colors {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.preset-colors span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.preset-item span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Typography Styles */
.font-preview {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    text-align: center;
}

.font-preview h2 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.font-preview p {
    color: var(--text-light);
    margin: 0;
}

#font-size-value {
    margin-left: 0.5rem;
    font-weight: 500;
    color: var(--brand-pink);
}

/* Media Manager Styles */
.media-manager {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.media-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-bottom: 1px solid #e5e7eb;
}

.media-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.media-header i {
    color: var(--brand-pink);
}

.media-sections {
    padding: 2rem;
}

.media-section {
    margin-bottom: 3rem;
}

.media-section:last-child {
    margin-bottom: 0;
}

.media-section h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.image-slot {
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.image-slot:hover {
    border-color: var(--brand-pink);
    background: rgba(205, 54, 114, 0.05);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.image-placeholder i {
    font-size: 3rem;
    color: #d1d5db;
}

.image-placeholder span {
    font-weight: 500;
    color: var(--text-dark);
}

.image-placeholder small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.btn-upload {
    background: var(--brand-pink);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.btn-upload:hover {
    background: #b02d63;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--brand-pink);
    border: 1px solid var(--brand-pink);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--brand-pink);
    color: white;
    transform: translateY(-1px);
}

.sync-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.sync-info {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border-left: 4px solid var(--brand-pink);
}

/* Settings Tab Styles */
.text-muted {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 0.25rem;
    border-left: 3px solid #ffc107;
}

.session-info {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.session-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.session-item i {
    color: var(--brand-pink);
    font-size: 1.1rem;
}

.session-item small {
    margin-left: auto;
    color: var(--text-light);
    font-size: 0.8rem;
}

.activity-log {
    max-height: 200px;
    overflow-y: auto;
    background: var(--bg-light);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item i {
    color: var(--brand-pink);
    font-size: 1rem;
    width: 16px;
}

.activity-item small {
    margin-left: auto;
    color: var(--text-light);
    font-size: 0.8rem;
}

.credentials-form {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin: 1rem 0;
}

.security-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    color: #856404;
}

.security-warning i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.media-item {
    aspect-ratio: 1;
    background: var(--bg-light);
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: scale(1.05);
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-item:hover .media-item-overlay {
    opacity: 1;
}

.media-item-overlay button {
    background: white;
    border: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    margin: 0 0.25rem;
    color: var(--text-dark);
}

/* Image Editor Styles */
.image-editor {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.editor-header h4 {
    color: white;
    font-size: 1.5rem;
}

.btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.editor-tools {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.editor-tools button {
    background: var(--brand-pink);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.editor-tools button:hover {
    background: #b02d63;
}

.editor-canvas {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.editor-canvas canvas {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0.5rem;
}

.editor-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.editor-actions button {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Success/Error Messages for CMS */
.cms-message {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cms-message.show {
    transform: translateX(0);
}

.cms-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.cms-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.cms-message.info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* Live Preview */
.live-preview {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1000;
    display: none;
}

.live-preview.active {
    display: block;
}

.preview-header {
    background: var(--brand-pink);
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 500;
    display: flex;
    justify-content: between;
    align-items: center;
}

.preview-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.preview-body {
    padding: 1rem;
    height: calc(100% - 60px);
    overflow-y: auto;
    font-size: 0.8rem;
}

/* Responsive CMS */
@media (max-width: 768px) {
    .admin-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .admin-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        overflow-x: auto;
        white-space: nowrap;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .stats-grid,
    .cms-grid {
        grid-template-columns: 1fr;
    }

    .table-container {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.75rem 0.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .color-grid {
        grid-template-columns: 1fr;
    }

    .preset-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-editor {
        padding: 1rem;
    }

    .editor-tools {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .editor-tools button {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .cms-message {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        transform: translateY(-100%);
    }

    .cms-message.show {
        transform: translateY(0);
    }

    .live-preview {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }
}

/* Services Management */
.service-count {
    background: var(--brand-pink);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.icon-preview {
    margin-top: 0.5rem;
}

.service-icon-preview {
    width: 60px;
    height: 60px;
    background: var(--brand-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon-preview i {
    font-size: 1.5rem;
    color: white;
}

.services-management {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--brand-pink);
    box-shadow: 0 2px 8px rgba(205, 54, 114, 0.1);
}

.service-item-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item-icon i {
    font-size: 1.25rem;
    color: white;
}

.service-item-content {
    flex: 1;
}

.service-item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.service-item-description {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.service-item-price {
    color: var(--brand-pink);
    font-weight: 500;
    font-size: 0.9rem;
}

.service-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.service-action-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    padding: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.service-action-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.service-action-btn.edit:hover {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #3b82f6;
}

.service-action-btn.delete:hover {
    background: #fee2e2;
    border-color: #ef4444;
    color: #ef4444;
}

.service-action-btn.toggle:hover {
    background: #f0fdf4;
    border-color: #22c55e;
    color: #22c55e;
}

.service-item.inactive {
    opacity: 0.6;
}

.service-item.inactive .service-item-icon {
    background: #9ca3af;
}

/* Sync Status */
.sync-status {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Primary button override */
.btn.btn-primary {
    background: #cd3672 !important;
    color: white;
    border: 1px solid #cd3672;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn.btn-primary:hover {
    background: #b02d63 !important;
    border-color: #b02d63;
    transform: translateY(-1px);
}

/* Status Dropdown Styles */
.actions-cell {
    position: relative;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.status-dropdown {
    position: relative;
    display: inline-block;
}

.status-options {
    position: absolute;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 150px;
    overflow: hidden;
    /* Dynamic positioning will be set by JavaScript */
}

.status-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: white;
    color: #374151;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: left;
}

.status-option:hover {
    background: #f3f4f6;
}

.status-option.pending {
    color: #d97706;
}

.status-option.read {
    color: #059669;
}

.status-option.contacted {
    color: #3b82f6;
}

.status-option.completed {
    color: #10b981;
}

.status-option.unread {
    color: #ef4444;
}

.status-option.responded {
    color: #8b5cf6;
}

/* Delete button styles */
.delete-btn {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border: 1px solid #fecaca !important;
}

.delete-btn:hover {
    background: #fee2e2 !important;
    color: #991b1b !important;
    border-color: #fca5a5 !important;
    transform: scale(1.05);
}

/* Service Edit Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-modal .modal-content {
    background: white;
    border-radius: 1rem;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.service-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.service-modal .modal-header h3 {
    margin: 0;
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-modal .close-modal {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.service-modal .close-modal:hover {
    background: #e5e7eb;
    color: #374151;
}

.service-modal .modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.service-modal .modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    justify-content: flex-end;
}

.service-modal .form-group {
    margin-bottom: 1.5rem;
}

.service-modal .form-group:last-child {
    margin-bottom: 0;
}

.service-modal .form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.service-modal .form-group input,
.service-modal .form-group textarea,
.service-modal .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.service-modal .form-group input:focus,
.service-modal .form-group textarea:focus,
.service-modal .form-group select:focus {
    outline: none;
    border-color: var(--brand-pink);
    box-shadow: 0 0 0 3px rgba(205, 54, 114, 0.1);
}

.service-modal .service-icon-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--brand-pink);
    color: white;
    border-radius: 1rem;
    font-size: 1.5rem;
}