/* Additional dashboard styles */
.erm-login-message {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    max-width: 400px;
    margin: 40px auto;
}

.erm-login-message a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.erm-login-message a:hover {
    text-decoration: underline;
}

/* Loading states */
.erm-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Tooltip styles */
.erm-tooltip {
    position: relative;
    cursor: help;
}

.erm-tooltip:hover::after {
    content: attr(data-tip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #23282d;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: nowrap;
    z-index: 100;
}