/**
 * Template: ms-lms-starter-theme
 * Theme Name: COP Online Bible School
 * Theme URI: https://copbibleschool.com
 * Author: Cathedral of Praise
 * Author URI: https://cathedralofpraisemanila.com.ph
 * Description: COP Online Bible School
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags: classes, courses, Education, education center, e-commerce, learning center, tutoring, teaching, study, studying, learning, lessons, instructor, teacher, mentor
 * Text Domain: starter-text-domain
 * Version: 1.0.0
 */
/* Custom Account Menu - Professional Styling */
.custom-account-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 6px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 10px;
    margin: 0 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
	text-decoration:none;	
}

/* Welcome Message Styling */
.welcome-message {
    color: #fff;
    font-weight: 500;
    margin-right: 8px;
    white-space: nowrap;
	text-decoration:none;
}

/* Login/Logout Links */
.login-link,
.logout-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.login-link:hover,
.logout-link:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
	text-decoration:none;
}

/* Icon Styling */
.login-link i {
    font-size: 12px;
    opacity: 0.8;
}

/* Separator Styling */
.custom-account-menu .separator {
    margin: 0 8px;
    color: #bdc3c7;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-account-menu {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .welcome-message {
        display: none; /* Hide welcome message on mobile */
    }
    
    .login-link,
    .logout-link {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .custom-account-menu {
        margin: 0 5px;
        padding: 4px 8px;
    }
}
