/*
Theme Name: Astra Child
Author: Dreamhost
Description: This is child theme of astra.
Version: 1.0.0
Template: astra

This is the child theme for Astra theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

/* Flex container */
.um-account-wrapper {
    display: flex;
    gap: 30px;
}

/* Sidebar styling */
.um-account-sidebar {
    flex: 0 0 250px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 15px 0;
}

/* Nav links */
.um-account-sidebar .um-account-nav {
    display: block !important;
}

.um-account-sidebar .um-account-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 15px;
    color: #444;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.um-account-sidebar .um-account-nav a:hover {
    background: #f9f9f9;
}

.um-account-sidebar .um-account-nav a.current {
    background: #f0f6ff;
    font-weight: 600;
    border-left: 3px solid #2d8cff; /* active highlight */
}

/* Icons */
.um-account-sidebar .um-account-nav .ico {
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

/* Right content box */
.um-account-main-content {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;
}

.um-account-main-content .um-account-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.um-account-main-content .um-form input,
.um-account-main-content .um-form select {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 10px 12px;
    width: 100%;
}

.um-account-main-content .um-button {
    background: #2d8cff;
    border-radius: 20px;
    padding: 10px 25px;
    font-weight: 600;
    color: #fff;
}
