.button {
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    /*cursor: pointer;*/
    font-family: sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.primary {
    background-color: #5865F2;
}
.secondary {
    background-color: gray;
}
.success {
    background-color: #338148;
}
.danger {
    background-color: #ED4245;
}

.select-option {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #2F3136;
    color: #FFFFFF;
    /*cursor: pointer;*/
    font-size: 14px;
    border: 1px solid transparent;
}

.channel {
    display: inline-block;
    background-color: #484C79;
    color: #FFFFFF;
    padding: 1px 3px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    /*cursor: pointer;*/
    text-decoration: none;
    transition: background-color 0.2s ease;
}