/* Buy Me Coffee Component Styles */

.coffee {
    text-align: center;
    margin: 40px 0 30px;
}

.buy-me-coffee {
    display: inline-block;
    background: #24292f;
    border: none;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none; /* Ensure no underline for <a> tag */
}

.buy-me-coffee:hover {
    background: #15141a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff; /* Ensure text color remains white on hover */
}

.buy-me-coffee:active {
    transform: translateY(0);
}

.buy-me-coffee:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(36, 41, 47, 0.3);
}
