/* თავსართის სტილები */
header.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    font-size: 24px;
    font-weight: 600;
    color: #1e90ff;
    text-decoration: none;
    letter-spacing: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-button {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-button.primary {
    background-color: #1e90ff;
    color: white;
}

.action-button.primary:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
}

.action-button.secondary {
    background-color: #dfe6e9;
    color: #2d3436;
    border: 1px solid #ced4da;
}

.action-button.secondary:hover {
    background-color: #ced4da;
}

/* მენიუს dropdown სტილები */
.menu-dropdown {
    position: relative;
}

.menu-button {
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #1e90ff;
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.menu-button:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
}

.menu-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    z-index: 11;
    animation: fadeIn 0.2s ease-in;
}

.menu-dropdown.show .menu-dropdown-content {
    display: block;
}

.menu-item {
    padding: 15px 20px;
    color: #2d3436;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f1f3f5;
    font-size: 14px;
    font-weight: 500;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: #f8f9fa;
    color: #1e90ff;
}

.menu-item i {
    width: 16px;
    text-align: center;
}

/* ენის მენიუ */
.language-dropdown {
    position: relative;
}

.language-button {
    padding: 10px 15px;
    border-radius: 25px;
    background-color: #dfe6e9;
    color: #2d3436;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.language-button:hover {
    background-color: #ced4da;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: white;
    min-width: 140px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 11;
    animation: fadeIn 0.2s ease-in;
}

.language-dropdown.show .language-dropdown-content {
    display: block;
}

.language-dropdown-content a {
    padding: 12px 15px;
    color: #2d3436;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.language-dropdown-content a:hover {
    background-color: #f1f3f5;
}

.language-flag {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    vertical-align: middle;
    border: 1px solid #e0e0e0;
    background-color: #ddd;
}

/*애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}