/* Mail button */
.indexmail {
    position: fixed;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 50;
}
@media (min-width: 768px) {
    .indexmail {
        left: 2.5rem;
    }
}

.mail-button {
    display: inline-block;
    padding: 0.75rem; /* 3 * 0.25rem */
    border-radius: 9999px; /* Fully rounded */
    background-color: #e5e7eb; /* Gray 200 */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Shadow black */
}

.mail-button path {
    fill: rgba(var(--custom-link-color-rgb),1);
}

.welcome-message {
    position: absolute;
    top: -3.6rem; /* -24 * 0.25rem */
    left: 120px;
    transform: translateX(-50%);
    background-color: #ffffff; /* White background */
    border: 1px solid #d1d5db; /* Gray 300 */
    border-radius: 0.5rem; /* Rounded corners */
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); /* Shadow */
    width: 15rem; /* 72 * 0.25rem */
    padding: 0.35rem; /* 4 * 0.25rem */
    display: none; /* Hidden by default */
    font-size: medium;
}

.welcome-message .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem; /* 2 * 0.25rem */
}

.welcome-message .header span {
    color: #1f2937; /* Gray 800 */
    font-weight: 600; /* Semibold */
}

.welcome-message .header button {
    transition: color 0.2s ease;
    border: none;
    background: none;
    margin-bottom: 2px;
    margin-left: -12px;
}

.welcome-message .header button:hover {
    color: #1f2937; /* Gray 800 */
}