/* Company Jobs Styles - Complementary to stylesJobs.css */

/* Company Header in HeaderContent */
.company-header-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.company-logo-small {
    flex-shrink: 0;
}

.company-logo-small img {
    max-width: 50px;
    max-height: 40px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Company Info Banner */
.company-info-banner {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
}

.company-description-content {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    line-height: 1.6;
    color: #444;
    font-size: 14px;
}

.company-description-content p {
    margin-bottom: 12px;
}

.company-description-content p:last-child {
    margin-bottom: 0;
}

.company-website-section {
    text-align: center;
}

.company-website-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #199ada 0%, #162960 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(25, 154, 218, 0.3);
}

.company-website-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(25, 154, 218, 0.4);
    text-decoration: none;
    color: white;
}

.company-website-btn svg {
    width: 14px;
    height: 14px;
}

/* No Jobs Message - Styled to match Jobs page */
.no-jobs-message {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin: 20px auto;
    max-width: 500px;
}

.no-jobs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.no-jobs-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-jobs-icon svg {
    width: 30px;
    height: 30px;
    color: #6c757d;
}

.no-jobs-message h3 {
    font-size: 20px;
    font-weight: 600;
    color: #162960;
    margin-bottom: 8px;
}

.no-jobs-message p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.browse-all-jobs-btn {
    background: linear-gradient(135deg, #199ada 0%, #162960 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(25, 154, 218, 0.3);
}

.browse-all-jobs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(25, 154, 218, 0.4);
    text-decoration: none;
    color: white;
}

/* Back Navigation */
.back-navigation {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #199ada;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #162960;
    text-decoration: none;
    transform: translateX(-4px);
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-header-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .company-logo-small img {
        max-width: 40px;
        max-height: 32px;
    }
    
    .company-description-content {
        padding: 16px;
        font-size: 13px;
    }
    
    .no-jobs-message {
        padding: 30px 16px;
        margin: 16px;
    }
    
    .no-jobs-icon {
        width: 50px;
        height: 50px;
    }
    
    .no-jobs-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .no-jobs-message h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .company-website-btn,
    .browse-all-jobs-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .company-description-content {
        padding: 14px;
        font-size: 12px;
    }
}

/* Company Jobs - Minimal styles to complement stylesJobs.css */

/* Simple no jobs message - matches Jobs page styling */
.no-jobs-simple {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-jobs-simple p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.no-jobs-simple a {
    color: #199ada;
    text-decoration: none;
    font-weight: 500;
}

.no-jobs-simple a:hover {
    color: #162960;
    text-decoration: underline;
}

/* Company Info Styles - Styled like JobDetails sidebar */
.company-info-wrapper {
    max-width: 1200px;
    margin: 30px auto 10px auto;
    padding: 0 20px;
}

.company-info-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.company-header-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #199ada;
}

.company-logo-display {
    flex-shrink: 0;
}

.company-logo-display img {
    max-width: 80px;
    max-height: 60px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.company-title-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #162960;
    margin: 0;
}

.company-description-section {
    font-family: var(--font-family-body);
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.company-description-section p {
    margin-bottom: 12px;
}

.company-description-section p:last-child {
    margin-bottom: 0;
}

.company-actions-section {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.company-website-button {
    font-family: var(--font-family-body);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #199ada 0%, #162960 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 154, 218, 0.3);
}

.company-website-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 154, 218, 0.4);
    text-decoration: none;
    color: white;
}

.company-website-button svg {
    width: 16px;
    height: 16px;
}

/* Alert for no description */
.company-no-description-alert {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.company-no-description-alert svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #0c5460;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-header-section {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .company-logo-display img {
        max-width: 60px;
        max-height: 45px;
    }
    
    .company-title-section h2 {
        font-size: 18px;
    }
    
    .company-info-card {
        padding: 20px;
    }
    
    .company-description-section {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .company-info-wrapper {
        padding: 0 16px;
    }
    
    .company-info-card {
        padding: 16px;
    }
    
    .company-title-section h2 {
        font-size: 16px;
    }
    
    .company-website-button {
        padding: 10px 20px;
        font-size: 13px;
    }
} 