/*! Aris Resume Search v1.0.0 | MIT License | https://aristotle.me/resume-search */

/* ==========================================================================
   Base styles and reset
   ========================================================================== */
   *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

/* ==========================================================================
   Layout Container
   ========================================================================== */
.resume-search-app {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.resume-search-app .header-section {
    background-color: #2563eb;
    color: white;
    padding: 3rem 0;
    text-align: center;
    width: 100%;
    margin: 0;
    margin-bottom: 2rem;
    position: relative;
    display: block;
}

.resume-search-app .header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    color: white;
    position: relative;
    z-index: 1;
}

.resume-search-app .header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.4) 100%);
    z-index: 0;
}

.resume-search-app .header-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: white;
}

.resume-search-app .header-description p {
    margin: 0.5rem 0;
    color: white;
}

/* ==========================================================================
   Search Widget
   ========================================================================== */
.resume-search-app .resume-search-widget {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.resume-search-app .resume-search-widget * {
    box-sizing: border-box;
}

/* Form Elements */
.resume-search-app .resume-search-widget .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.resume-search-app .resume-search-widget label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    height: 2rem;
    display: flex;
    align-items: center;
}

.resume-search-app .resume-search-widget .input-field {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #ffffff;
    height: 3rem; /* Match the height of chips-input-container */
}

.resume-search-app .resume-search-widget .input-field:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Checkbox Styles */
.resume-search-app .resume-search-widget .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.resume-search-app .resume-search-widget .checkbox {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: #2563eb;
}

.resume-search-app .resume-search-widget .checkbox-label {
    font-weight: 500;
    margin: 0;
    cursor: pointer;
}

/* ==========================================================================
   Main Input Row Layout
   ========================================================================== */

.main-inputs-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.job-title-group {
    flex: 1;
    min-width: 0; /* Allows flex item to shrink below content size */
}

.skills-keywords-group {
    flex: 1;
    min-width: 0; /* Allows flex item to shrink below content size */
}

/* Mobile Layout - Stack vertically */
@media (max-width: 768px) {
    .main-inputs-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .job-title-group,
    .skills-keywords-group {
        flex: none;
    }
    
    .resume-search-app .resume-search-widget .input-field,
    .resume-search-app .resume-search-widget .chips-input-container {
        height: 3rem;
    }
}

/* Label with Tooltip and Inline Toggle */
.resume-search-app .resume-search-widget .label-with-tooltip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    height: 2rem;
}

.resume-search-app .resume-search-widget .label-with-tooltip label {
    margin: 0;
    font-weight: 600;
    color: #1e293b;
    line-height: 1;
}

/* Compact inline toggle */
.resume-search-app .resume-search-widget .inline-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.resume-search-app .resume-search-widget .inline-toggle input[type="radio"] {
    display: none;
}

.resume-search-app .resume-search-widget .toggle-slider {
    background: transparent;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    min-width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.resume-search-app .resume-search-widget .toggle-option {
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
}

.resume-search-app .resume-search-widget .toggle-separator {
    display: none; /* Hide the separator */
}

.resume-search-app .resume-search-widget .and-option {
    color: #6b7280;
    background: #f3f4f6;
    border-color: #d1d5db;
}

.resume-search-app .resume-search-widget .or-option {
    color: #6b7280;
    background: #f3f4f6;
    border-color: #d1d5db;
}

/* When OR is selected */
.resume-search-app .resume-search-widget .inline-toggle input[value="or"]:checked ~ .toggle-slider .or-option {
    color: white;
    background: #f59e0b;
    border-color: #f59e0b;
}

.resume-search-app .resume-search-widget .inline-toggle input[value="or"]:checked ~ .toggle-slider .and-option {
    color: #6b7280;
    background: #f3f4f6;
    border-color: #d1d5db;
}

/* When AND is selected (default) */
.resume-search-app .resume-search-widget .inline-toggle input[value="and"]:checked ~ .toggle-slider .and-option {
    color: white;
    background: #2563eb;
    border-color: #2563eb;
}

.resume-search-app .resume-search-widget .inline-toggle input[value="and"]:checked ~ .toggle-slider .or-option {
    color: #6b7280;
    background: #f3f4f6;
    border-color: #d1d5db;
}

/* Remove the container background styles */
.resume-search-app .resume-search-widget .inline-toggle input[value="or"]:checked ~ .toggle-slider {
    background: transparent;
    border: none;
}

.resume-search-app .resume-search-widget .inline-toggle input[value="and"]:checked ~ .toggle-slider {
    background: transparent;
    border: none;
}

.resume-search-app .resume-search-widget .tooltip-button {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
    line-height: 1;
}

.resume-search-app .resume-search-widget .tooltip-button:hover {
    color: #2563eb;
}

.resume-search-app .resume-search-widget .tooltip-content {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.4;
    width: 350px;
    max-width: 90vw;
    word-break: normal;
    overflow: visible;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.resume-search-app .resume-search-widget .tooltip-content::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #1e293b;
}

.resume-search-app .resume-search-widget .tooltip-button:hover + .tooltip-content,
.resume-search-app .resume-search-widget .tooltip-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

/* Chips Input Container */
.resume-search-app .resume-search-widget .chips-input-container {
    position: relative;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    min-height: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    transition: border-color 0.2s ease;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.resume-search-app .resume-search-widget .chips-input-container:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.resume-search-app .resume-search-widget .chips-display {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    min-height: 2rem;
}

.resume-search-app .resume-search-widget .chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    animation: chipAppear 0.2s ease;
    margin: 0.25rem 0;
}

@keyframes chipAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.resume-search-app .resume-search-widget .chip-remove {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.resume-search-app .resume-search-widget .chip-remove:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.resume-search-app .resume-search-widget .chips-input {
    border: none;
    outline: none;
    flex: 1;
    min-width: 120px;
    font-size: 1rem;
    padding: 0.25rem;
    background: transparent;
    text-align: left;
    direction: ltr;
    min-height: 2rem;
}

.resume-search-app .resume-search-widget .chips-input::placeholder {
    color: #94a3b8;
    text-align: left;
    direction: ltr;
}

/* Hide placeholder when chips exist */
.resume-search-app .resume-search-widget .chips-input.has-chips::placeholder {
    color: transparent;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .resume-search-app .resume-search-widget .tooltip-content {
        bottom: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        max-width: 85vw;
    }
    
    .resume-search-app .resume-search-widget .tooltip-content::before {
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #1e293b;
        border-bottom: none;
    }
    
    .resume-search-app .resume-search-widget .tooltip-button:hover + .tooltip-content,
    .resume-search-app .resume-search-widget .tooltip-content:hover {
        transform: translateX(-50%) translateY(-4px);
    }
    
    .resume-search-app .resume-search-widget .chips-input-container {
        min-height: 3rem;
        padding: 0.5rem 1rem;
    }
}

/* Search Buttons */
.resume-search-app .resume-search-widget .button-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.resume-search-app .resume-search-widget .search-button {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resume-search-app .resume-search-widget .search-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.resume-search-app .resume-search-widget .btn-google {
    background-color: #2563eb;
    color: white;
}

.resume-search-app .resume-search-widget .btn-google:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.resume-search-app .resume-search-widget .btn-linkedin {
    background-color: #0077b5;
    color: white;
}

.resume-search-app .resume-search-widget .btn-linkedin:hover {
    background-color: #005582;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

.resume-search-app .resume-search-widget .btn-github {
    background-color: #24292e;
    color: white;
}

.resume-search-app .resume-search-widget .btn-github:hover {
    background-color: #1b1f23;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(36, 41, 46, 0.3);
}

/* Quick Share Styles */
.resume-search-app .quick-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.resume-search-app .quick-share-text {
    color: #64748b;
    font-size: 0.9rem;
}

.resume-search-app .quick-share-buttons {
    display: flex;
    gap: 0.5rem;
}

.resume-search-app .quick-share-button {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.resume-search-app .quick-share-button:hover {
    transform: translateY(-2px);
}

.resume-search-app .quick-share-button.twitter {
    background-color: #1DA1F2;
}

.resume-search-app .quick-share-button.linkedin {
    background-color: #0077b5;
}

.resume-search-app .quick-share-button.copy-link {
    background-color: #2563eb;
}

/* ==========================================================================
   Share Section
   ========================================================================== */
.resume-search-app .share-section {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
}

.resume-search-app .share-section:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.resume-search-app .share-title {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.resume-search-app .share-description {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.resume-search-app .share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resume-search-app .share-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.resume-search-app .share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.resume-search-app .share-button.twitter {
    background-color: #1DA1F2;
}

.resume-search-app .share-button.linkedin {
    background-color: #0077b5;
}

.resume-search-app .share-button.copy-link {
    background-color: #2563eb;
}

/* ==========================================================================
   Floating Share Panel
   ========================================================================== */
.resume-search-app .floating-share {
    position: fixed;
    right: -70px; /* Start off-screen */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.resume-search-app .floating-share-count {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
    display: none; /* Initially hidden */
}

.resume-search-app .share-count {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    display: none; /* Initially hidden */
}

.resume-search-app .floating-share-count .number {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.resume-search-app .floating-share-count .label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
}

.resume-search-app .floating-share-label {
    display: none; /* Hide the label when count is shown */
}

.resume-search-app .floating-share.visible {
    right: 20px;
    opacity: 1;
    visibility: visible;
}

.resume-search-app .floating-share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.resume-search-app .floating-share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.resume-search-app .floating-share-button.twitter {
    background-color: #1DA1F2;
}

.resume-search-app .floating-share-button.linkedin {
    background-color: #0077b5;
}

.resume-search-app .floating-share-button.copy-link {
    background-color: #2563eb;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.resume-search-app .benefits-section {
    background-color: #f8fafc;
    padding: 4rem 20px;
    margin-top: 4rem;
    position: relative;
    width: 100%;
}

.resume-search-app .benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e2e8f0, transparent);
}

.resume-search-app .benefits-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.resume-search-app .benefits-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.resume-search-app .benefits-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #2563eb;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.resume-search-app .benefits-description {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resume-search-app .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
    width: 100%;
}

.resume-search-app .benefits-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

@media (max-width: 1200px) {
    .resume-search-app .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .resume-search-app .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.resume-search-app .benefit-card {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.resume-search-app .benefit-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.resume-search-app .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.resume-search-app .benefit-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.resume-search-app .benefit-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.resume-search-app .footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem 20px;
    text-align: center;
    margin-top: auto;
    width: 100%;
    position: relative;
}

.resume-search-app .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.resume-search-app .footer-about {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.resume-search-app .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.resume-search-app .footer-links a {
    color: #e2e8f0;
    text-decoration: none;
}

.resume-search-app .footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.resume-search-app .footer-separator {
    color: #475569;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

/* Mobile */
@media (max-width: 768px) {
    .resume-search-app .quick-share {
        flex-direction: column;
        gap: 0.5rem;
    }

    .resume-search-app .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .resume-search-app .benefits-section {
        padding: 3rem 1rem;
        margin-top: 3rem;
    }

    .resume-search-app .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .resume-search-app .benefits-title {
        font-size: 1.75rem;
        width: 100%;
        transform: none;
        left: 0;
    }

    .resume-search-app .benefits-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .resume-search-app .benefit-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .resume-search-app .floating-share {
        right: -60px;
        padding: 0.5rem;
    }

    .resume-search-app .floating-share.visible {
        right: 10px;
    }

    .resume-search-app .floating-share-button {
        width: 35px;
        height: 35px;
    }

    .resume-search-app .floating-share-button svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile - Small */
@media (max-width: 480px) {
    .resume-search-app .quick-share-button {
        width: 28px;
        height: 28px;
    }

    .resume-search-app .quick-share-button svg {
        width: 14px;
        height: 14px;
    }

    .resume-search-app .footer {
        padding: 1rem;
    }

    .resume-search-app .footer-about {
        font-size: 0.9rem;
    }

    .resume-search-app .footer-links {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .resume-search-app .header-section {
        padding: 1.5rem 0.75rem;
    }

    .resume-search-app .header-section h1 {
        font-size: 1.75rem;
    }

    .resume-search-app .resume-search-widget {
        padding: 10px;
        margin: 0 0.5rem;
    }

    .resume-search-app .input-field {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .resume-search-app .checkbox-label {
        font-size: 0.9rem;
    }

    .resume-search-app .search-button {
        height: 44px;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .resume-search-app .benefits-section {
        padding: 2rem 0.75rem;
        margin-top: 2rem;
    }

    .resume-search-app .benefits-title {
        font-size: 1.5rem;
    }

    .resume-search-app .benefits-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .resume-search-app .benefit-card {
        padding: 1.25rem;
    }

    .resume-search-app .benefit-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .resume-search-app .benefit-heading {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .resume-search-app .benefit-description {
        font-size: 0.9rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .resume-search-app .resume-search-widget {
        max-width: 90%;
    }

    .resume-search-app .button-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .resume-search-app .search-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .resume-search-app .benefits-section {
        padding: 3.5rem 2rem;
    }

    .resume-search-app .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .resume-search-app .benefit-card {
        min-height: 220px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .resume-search-app .floating-share,
    .resume-search-app .share-section,
    .resume-search-app .quick-share {
        display: none !important;
    }
}