/* Employee Portal Pro - Frontend Styles */

:root {
    --epp-primary: #4a90e2;
    --epp-primary-hover: #357abd;
    --epp-secondary: #6c757d;
    --epp-border: #e1e4e8;
    --epp-bg-light: #f6f8fa;
    --epp-text: #24292e;
    --epp-text-secondary: #586069;
}
.x-main.left{
    width: 100% !important;
}
/* Portal Wrapper */
.epp-portal-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Banners */
.epp-banner {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.epp-banner-content {
    flex: 1;
}

.epp-banner-content p {
    margin: 0;
    line-height: 1.5;
}

.epp-banner-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.epp-banner-expiration {
    font-size: 13px;
    opacity: 0.9;
}

.epp-banner-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.epp-banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.epp-banner-placeholder {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px dashed var(--epp-border);
    border-radius: 4px;
    color: var(--epp-text-secondary);
    text-align: center;
    font-style: italic;
}

/* Portal Header */
.epp-portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--epp-border);
}

.epp-breadcrumbs {
    font-size: 14px;
    color: var(--epp-text-secondary);
}

.epp-breadcrumb-link {
    color: var(--epp-primary);
    text-decoration: none;
}

.epp-breadcrumb-link:hover {
    text-decoration: underline;
}

.epp-breadcrumb-separator {
    margin: 0 8px;
    color: var(--epp-text-secondary);
}

.epp-breadcrumb-current {
    color: var(--epp-text);
    font-weight: 500;
}

.epp-header-actions {
    display: flex;
    gap: 10px;
}

/* Portal Content */
.epp-portal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.epp-portal-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--epp-text);
}

.epp-description {
    color: var(--epp-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.epp-description p {
    margin: 0 0 10px 0;
}

/* Folders Grid */
.epp-folders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.epp-folder-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--epp-bg-light);
    border: 1px solid var(--epp-border);
    border-radius: 6px;
    text-decoration: none;
    color: var(--epp-text);
    transition: all 0.2s;
}

.epp-folder-card:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.epp-folder-icon {
    font-size: 48px;
    color: var(--epp-text-secondary);
    margin-right: 15px;
}

.epp-folder-icon .dashicons {
    width: 48px;
    height: 48px;
    font-size: 48px;
}

.epp-folder-info {
    flex: 1;
}

.epp-folder-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--epp-text);
}

.epp-folder-count {
    font-size: 13px;
    color: var(--epp-text-secondary);
    margin: 0;
}

/* Files Section */
.epp-files-section {
    margin-top: 40px;
}

.epp-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--epp-text-secondary);
    margin: 0 0 15px 0;
    padding: 10px 15px;
    background: var(--epp-bg-light);
    border-radius: 4px;
}

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

.epp-files-table thead {
    background: var(--epp-bg-light);
}

.epp-files-table th {
    text-align: left;
    padding: 12px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--epp-text-secondary);
    text-transform: uppercase;
    border-bottom: 2px solid var(--epp-border);
}

.epp-files-table td {
    padding: 15px;
    border-bottom: 1px solid var(--epp-border);
}

.epp-item-row:hover {
    background: var(--epp-bg-light);
}

.epp-item-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--epp-text);
}

.epp-item-link:hover {
    color: var(--epp-primary);
}

.epp-item-icon {
    font-size: 20px;
    margin-right: 10px;
    color: var(--epp-text-secondary);
}

.epp-item-icon.dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.epp-item-name {
    font-weight: 500;
}

.epp-item-url {
    color: var(--epp-text-secondary);
    font-size: 13px;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.epp-empty-message {
    text-align: center;
    color: var(--epp-text-secondary);
    padding: 40px;
    font-style: italic;
}

/* Item Detail Page */
.epp-item-detail {
    max-width: 900px;
    margin: 0 auto;
}

.epp-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--epp-border);
}

.epp-item-title-section {
    display: flex;
    align-items: center;
    flex: 1;
}

.epp-item-title-section .epp-item-icon {
    font-size: 32px;
    margin-right: 15px;
}

.epp-item-title-section .epp-item-icon.dashicons {
    width: 32px;
    height: 32px;
    font-size: 32px;
}

.epp-item-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.epp-item-description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--epp-text-secondary);
}

.epp-item-content {
    margin-bottom: 30px;
}

.epp-pdf-viewer {
    width: 100%;
    height: 800px;
    border: 1px solid var(--epp-border);
    border-radius: 4px;
}

.epp-image-viewer {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.epp-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.epp-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.epp-video-player {
    width: 100%;
    max-width: 100%;
    border-radius: 4px;
}

.epp-item-footer {
    padding-top: 20px;
    border-top: 1px solid var(--epp-border);
}

/* Buttons */
.epp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.epp-btn-primary {
    background: var(--epp-primary);
    color: #fff;
}

.epp-btn-primary:hover {
    background: var(--epp-primary-hover);
    color: #fff;
}

.epp-btn-secondary {
    background: transparent;
    color: var(--epp-text);
    border: 1px solid var(--epp-border);
}

.epp-btn-secondary:hover {
    background: var(--epp-bg-light);
    color: var(--epp-text);
}

.epp-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Modals */
.epp-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.epp-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.epp-modal-large {
    max-width: 700px;
}

.epp-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--epp-text-secondary);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.epp-modal-content h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
}

.epp-modal-content label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--epp-text);
}

.epp-modal-content input[type="text"],
.epp-modal-content input[type="email"],
.epp-modal-content input[type="url"],
.epp-modal-content input[type="number"],
.epp-modal-content input[type="date"],
.epp-modal-content textarea,
.epp-modal-content select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--epp-border);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.epp-modal-content textarea {
    resize: vertical;
    min-height: 80px;
}

.epp-modal-content p {
    margin: 0 0 15px 0;
}

.epp-field-hint {
    display: block;
    font-size: 12px;
    color: var(--epp-text-secondary);
    margin-top: 5px;
    font-style: italic;
}

.epp-modal-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Upload Tabs */
.epp-upload-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--epp-border);
}

.epp-tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--epp-text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.epp-tab-btn.active {
    color: var(--epp-primary);
    border-bottom-color: var(--epp-primary);
}

.epp-tab-content {
    display: none;
}

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

.epp-upload-type-section {
    margin-bottom: 15px;
}

/* Bulk Upload */
.epp-bulk-upload-area {
    text-align: center;
    padding: 40px 20px;
    border: 2px dashed var(--epp-border);
    border-radius: 4px;
    margin-bottom: 20px;
}

.epp-upload-hint {
    color: var(--epp-text-secondary);
    font-size: 13px;
    margin-top: 10px;
}

#epp-bulk-file-list {
    margin-top: 20px;
    text-align: left;
}

.epp-file-item {
    padding: 10px;
    background: var(--epp-bg-light);
    border-radius: 4px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.epp-progress-bar {
    width: 100%;
    height: 30px;
    background: var(--epp-bg-light);
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}

.epp-progress-fill {
    height: 100%;
    background: var(--epp-primary);
    transition: width 0.3s;
    width: 0%;
}

.epp-progress-text {
    margin-top: 10px;
    color: var(--epp-text-secondary);
    font-size: 14px;
}

/* Status badges */
.epp-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.epp-status-active {
    background: #d4edda;
    color: #155724;
}

.epp-status-former {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
    .epp-portal-wrapper {
        padding: 15px;
    }
    
    .epp-portal-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .epp-header-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .epp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .epp-folders-grid {
        grid-template-columns: 1fr;
    }
    
    .epp-portal-title {
        font-size: 24px;
    }
    
    .epp-item-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* Employee Management Styles */

.epp-section {
    margin-bottom: 50px;
}

.epp-section-heading {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: var(--epp-text);
}

/* Department Grid */
.epp-departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.epp-department-card {
    position: relative;
    padding: 20px;
    background: var(--epp-bg-light);
    border: 1px solid var(--epp-border);
    border-radius: 6px;
    transition: all 0.2s;
}

.epp-department-card.epp-department-filter {
    cursor: pointer;
}

.epp-department-card:hover,
.epp-department-card.active {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.epp-department-card.active {
    border-color: var(--epp-primary);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.epp-department-delete {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(220, 53, 69, 0.1);
    border: none;
    color: #dc3545;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s;
}

.epp-department-card:hover .epp-department-delete {
    opacity: 1;
}

.epp-department-delete:hover {
    background: #dc3545;
    color: #fff;
}

.epp-department-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--epp-text);
}

.epp-department-count {
    font-size: 13px;
    color: var(--epp-text-secondary);
    margin: 0;
}

/* Employee Table */
.epp-employee-icon {
    font-size: 20px;
    margin-right: 10px;
    color: var(--epp-text-secondary);
}

.epp-employee-icon.dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

/* Small Buttons */
.epp-btn-small {
    padding: 6px 12px;
    font-size: 13px;
}

.epp-btn-danger {
    background: #dc3545;
    color: #fff;
}

.epp-btn-danger:hover {
    background: #c82333;
    color: #fff;
}

/* Employee Detail Page */
.epp-employee-detail {
    max-width: 900px;
    margin: 0 auto;
}

.epp-employee-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--epp-border);
}

.epp-employee-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.epp-employee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.epp-info-card {
    background: var(--epp-bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--epp-border);
}

.epp-info-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: var(--epp-text);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--epp-border);
}

.epp-info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--epp-border);
}

.epp-info-row:last-child {
    border-bottom: none;
}

.epp-info-label {
    font-weight: 500;
    color: var(--epp-text-secondary);
}

.epp-info-value {
    color: var(--epp-text);
    text-align: right;
}

.epp-employee-footer {
    padding-top: 20px;
    border-top: 1px solid var(--epp-border);
}

/* Responsive adjustments for employee management */
@media (max-width: 768px) {
    .epp-departments-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .epp-employee-cards {
        grid-template-columns: 1fr;
    }
    
    .epp-employee-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .epp-info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .epp-info-value {
        text-align: left;
    }
}

/* Filter Pills */
.epp-section-header {
    margin-bottom: 20px;
}

.epp-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.epp-employee-total-count {
    color: var(--epp-text-secondary);
    font-weight: 400;
}

.epp-filter-pills {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.epp-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--epp-primary);
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    animation: pillSlideIn 0.2s ease-out;
}

.epp-filter-pill-remove {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    transition: background 0.2s;
}

.epp-filter-pill-remove:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes pillSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hidden rows during filtering */
.epp-employee-row.epp-filtered-out {
    display: none;
}

/* Login Page */
.epp-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--epp-bg-light);
    padding: 20px;
}

.epp-login-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.epp-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.epp-login-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--epp-text);
}

.epp-login-header p {
    color: var(--epp-text-secondary);
    margin: 0;
}

.epp-login-form {
    margin-top: 20px;
}

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

.epp-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--epp-text);
}

.epp-form-group input[type="text"],
.epp-form-group input[type="email"],
.epp-form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--epp-border);
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.epp-form-group input:focus {
    outline: none;
    border-color: var(--epp-primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.epp-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.epp-checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.epp-btn-block {
    width: 100%;
    justify-content: center;
}

.epp-login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--epp-border);
}

.epp-login-footer a {
    color: var(--epp-primary);
    text-decoration: none;
    font-size: 14px;
}

.epp-login-footer a:hover {
    text-decoration: underline;
}

/* Messages */
.epp-message {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.epp-message.epp-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
}

.epp-message.epp-success {
    background: #efe;
    border: 1px solid #cfc;
    color: #060;
}

/* Profile Page */
.epp-profile-page {
    max-width: 800px;
    margin: 0 auto;
}

.epp-profile-section {
    margin-bottom: 40px;
}

.epp-profile-form {
    background: var(--epp-bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--epp-border);
}

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

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

/* Header actions with icons */
.epp-header-actions .epp-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .epp-login-container {
        padding: 30px 20px;
    }
    
    .epp-profile-form {
        padding: 20px;
    }
    
    .epp-header-actions .epp-btn .dashicons {
        margin-right: 0;
    }
    
    .epp-header-actions .epp-btn span:not(.dashicons) {
        display: none;
    }
}

/* Folder card wrapper for delete button positioning */
.epp-folder-card-wrapper {
    position: relative;
}

.epp-folder-delete {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 59, 48, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.epp-folder-card-wrapper:hover .epp-folder-delete {
    opacity: 1;
}

.epp-folder-delete:hover {
    background: rgba(255, 59, 48, 1);
    transform: scale(1.1);
}

/* Item row actions column */
.epp-actions-col {
    width: 100px;
    text-align: right;
}

.epp-item-actions {
    opacity: 0;
    transition: opacity 0.2s ease;
    text-align: right;
    white-space: nowrap;
}

.epp-item-row:hover .epp-item-actions {
    opacity: 1;
}

.epp-item-edit,
.epp-item-delete {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    margin-left: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.epp-item-edit {
    color: var(--epp-primary);
}

.epp-item-edit:hover {
    background: rgba(0, 122, 255, 0.1);
}

.epp-item-delete {
    color: rgba(255, 59, 48, 0.9);
}

.epp-item-delete:hover {
    background: rgba(255, 59, 48, 0.1);
}

.epp-item-edit .dashicons,
.epp-item-delete .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Ensure folder cards maintain their link style */
.epp-folder-card-wrapper .epp-folder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: var(--epp-bg-light);
    border: 2px solid var(--epp-border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.epp-folder-card-wrapper .epp-folder-card:hover {
    border-color: var(--epp-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
