/* Dropdown Container Styles */
.dropdown-container {
    width: 80%;
    max-width: 1200px;
    height: auto;
    position: absolute;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%) !important;
}

/* Dropdown Header Styles */
.dropdown-header-link {
    text-decoration: none;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #db2b2f;
    color: white;
    padding: 20px;
}

.dropdown-header h5 {
    color: white;
    text-transform: uppercase;
    margin-bottom: 0;
}

.dropdown-arrow {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
}

/* Dropdown Content Styles */
.inside-drop-down {
    padding: 15px;
}

.dropdown-content {
    margin-bottom: 15px;
}

.dropdown-title {
    display: block;
    margin-bottom: 5px;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.dropdown-title-paragraph {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Underline Effect */
.dropdown-title .underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    background-color: #db2b2f;
    transition: width 0.3s ease;
}

/* Karriera Dropdown Specific Styles */
.karriera-dropdown-content {
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dropdown-container {
        width: 100%;
        max-width: none;
        transform: none !important;
    }
    
    .dropdown-header {
        padding: 15px;
    }
    
    .dropdown-arrow {
        font-size: 16px;
    }
}

/* High Resolution Screens */
@media (min-width: 1920px) {
    .dropdown-container {
        width: 70%;
        max-width: 1600px;
    }
} 