﻿/* Download Buttons */
.gb-download-latest-btn {
    color: #ffffff;
    padding: 8px 12px 8px 12px;
    margin: 4px 0px 4px 12px;
    border-radius: 20px;
    background-color: var(--color-modrinth-0);
    max-height: fit-content;
    font-size: 20px;
    text-align: center;
    transition-duration: 0.2s;
    width: 280px;
}

.gb-download-latest-btn:hover {
    background-color: var(--color-modrinth-2);
    transition-duration: 0.2s;
}

.gb-download-other-btn {
    display: flex;
    gap: 8px;
    max-height: fit-content;
    font-size: 20px;
}

.gb-download-other-btn .gb-btn-left-side {
    color: #ffffff;
    padding: 8px 12px 8px 12px;
    margin: 4px 0px 4px 12px;
    background-color: #aaaaaa;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transition-duration: 0.2s;
    text-align: center;
}

.gb-download-other-btn .gb-btn-left-side:hover {
    background-color: #888888;
    transition-duration: 0.2s;
}

.gb-download-other-btn .btn-right-side {
    color: #ffffff;
    padding: 8px 12px 8px 4px;
    margin: 4px 12px 4px 0px;
    background-color: #aaaaaa;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    transition-duration: 0.2s;
}

.gb-download-other-btn .btn-right-side:hover {
    background-color: #888888;
    transition-duration: 0.2s;
}

.gb-download-other-btn .btn-dropdown {
    color: #FFFFFF;
    background-color: transparent;
    border: none;
}

.gb-download-other-btn .btn-dropdown option {
    background-color: #333;
}

