/* Modern Project Details Styling */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap");

/* CSS Variables for Modern Design - Header Color Palette */
:root {
    --primary-gradient: linear-gradient(135deg, #ff4c4b 0%, #e63946 100%);
    --secondary-gradient: linear-gradient(135deg, #292929 0%, #1a1a1a 100%);
    --success-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --warning-gradient: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    --danger-gradient: linear-gradient(135deg, #ff4c4b 0%, #e63946 100%);

    --primary-color: #ff4c4b;
    --secondary-color: #ff6b6b;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;

    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #292929;
    --bg-dark: #333333;

    --text-primary: #333333;
    --text-secondary: #555555;
    --text-muted: #777777;
    --text-white: #ffffff;
    --border-color: #f7f7f7f7;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;

    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Project Details Wrapper */
.project-details-wrapper {
    width: 100%;
    min-height: 100vh;
    background: var(--bg-primary);
}

/* Hero Section */
.project-hero-section {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--bg-white) 0%,
        var(--bg-secondary) 100%
    );
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.project-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

/* Enhanced Breadcrumbs */
.project-breadcrumbs-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb-item-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 14px;
    transition: var(--transition-fast);
}

.breadcrumb-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.breadcrumb-item-modern:hover .breadcrumb-icon-wrapper {
    background: rgba(255, 76, 75, 0.4);
    transform: scale(1.1);
}

.breadcrumb-separator-modern {
    color: var(--text-muted);
    font-size: 12px;
}

.breadcrumb-text-active {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Project Header Card */
.project-header-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-header-content {
    flex: 1;
}

.project-status-badge {
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: var(--success-gradient);
    color: white;
    animation: pulse 2s infinite;
}

.status-badge.closed {
    background: var(--danger-gradient);
    color: white;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.project-main-title {
    font-family: "DM Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-meta-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.meta-item i {
    color: var(--primary-color);
}

/* Price Display Card */
.price-display-card {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
}

.price-display-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%,
    100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.price-label-modern {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-amount-modern {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.price-type-modern {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-button.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
}

/* Content Grid */
.project-content-grid {
    background: var(--bg-secondary);
}

.content-layout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

/* Main Content */
.project-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Gallery Card */
.project-gallery-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-tertiary);
}

.gallery-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.gallery-controls {
    display: flex;
    gap: 0.5rem;
}

.gallery-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--border-radius-sm);
    background: var(--bg-dark);
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.gallery-content {
    padding: 0;
}

.gallery-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Content Cards */
.content-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    color: #111;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.card-content {
    padding: 1.5rem;
}

.description-content {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
}

/* Skills Grid */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
}

.skill-tag i {
    font-size: 12px;
    color: var(--success-color);
}

.skill-tag:hover i {
    color: white;
}

/* File Attachment */
.file-attachment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    border: 2px dashed var(--border-color);
    transition: var(--transition-fast);
}

.file-attachment:hover {
    border-color: var(--primary-color);
    background: rgba(255, 76, 75, 0.05);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background: var(--danger-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.file-details {
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.file-size {
    font-size: 14px;
    color: var(--text-muted);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-normal);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: white;
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        var(--primary-color) 100%
    );
}

/* Stats Grid */
.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-icon.purple {
    background: var(--primary-gradient);
}

.stat-icon.blue {
    background: var(--secondary-gradient);
}

.stat-icon.green {
    background: var(--success-gradient);
}

.stat-icon.orange {
    background: var(--warning-gradient);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Sidebar Content */
.project-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

/* Client Profile Card */
.client-profile-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.client-header {
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-bottom: 2px solid var(--border-color);
}

.client-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.client-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid white;
}

.client-status.online {
    background: var(--success-color);
}

.client-info {
    text-align: center;
}

.client-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.client-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    justify-content: center;
}

.client-rating .stars {
    display: flex;
    gap: 2px;
}

.client-rating .stars i {
    color: #ddd;
    font-size: 14px;
    transition: color 0.2s ease;
    cursor: default;
}

.client-rating .stars i.filled {
    color: #ffc107;
    text-shadow: 0 0 2px rgba(255, 193, 7, 0.3);
}

.client-rating .stars i.fa-star-half-alt.filled {
    color: #ffc107;
    text-shadow: 0 0 2px rgba(255, 193, 7, 0.3);
}

.client-rating .stars i:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.rating-text {
    font-weight: 600;
    color: #f7f7f7f7;
    font-size: 14px;
}

.rating-text:empty::before {
    content: "No reviews yet";
    color: #999;
    font-style: italic;
}

.client-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 14px;
    color: var(--text-white);
}

/* Client Stats */
.client-stats {
    display: flex;
    justify-content: space-around;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
}

.client-stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-text {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Client Actions */
.client-actions {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.client-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
}

.client-action-btn.primary {
    background: var(--primary-gradient);
    color: white;
}

.client-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        var(--primary-color) 100%
    );
}

.client-action-btn.secondary {
    background: var(--bg-dark);
    color: var(--text-white);
    border: 2px solid var(--border-color);
}

.client-action-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Client Social */
.client-social {
    padding: 1rem 1.5rem;
    border-top: 2px solid var(--border-color);
    background: var(--bg-light);
}

.social-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.social-media-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-media-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-color);
    transition: var(--transition-fast);
    cursor: pointer;
}

.social-media-item:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.social-media-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-media-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.social-media-icon.facebook {
    background: #3b5998;
}

.social-media-icon.instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.social-media-icon.linkedin {
    background: #0077b5;
}

.social-media-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.social-media-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition-fast);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.social-media-item-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-media-item-link:hover .social-media-icon {
    transform: scale(1.1);
}

/* Removed old social media link styles - now entire item is clickable */

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 14px;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-md);
}

/* Project Summary Card */
.project-summary-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    padding: 1.5rem;
}

.project-summary-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff4c4b 0%, #e63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.summary-value {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}

/* Tips Card */
.tips-card {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 2px solid #fed7aa;
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tips-header i {
    color: #f59e0b;
    font-size: 20px;
}

.tips-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

.tips-list li::before {
    content: "💡";
    position: absolute;
    left: 0;
    top: 0;
}

.tips-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-layout-grid {
        grid-template-columns: 1fr;
    }

    .project-sidebar-content {
        position: static;
    }

    .project-header-card {
        flex-direction: column;
        text-align: center;
    }

    .price-display-card {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .project-details-container {
        padding: 0 1rem;
    }

    .project-main-title {
        font-size: 2rem;
    }

    .project-meta-info {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .client-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .breadcrumb-item-modern {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .project-header-card {
        padding: 1.5rem;
    }

    .content-card {
        margin: 0 -0.5rem;
    }

    .card-header {
        padding: 1rem;
    }

    .card-content {
        padding: 1rem;
    }
}
