.checkbox-container {
    display: flex;
    align-items: center;
}

.rounded-checkbox {
    appearance: none;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 2px solid #0ec6d5;
    border-radius: 7.2px; /* Reduced border-radius by 40% */
    position: relative;
    cursor: pointer;
    outline: none;
    margin-right: 8px;
}

.rounded-checkbox:checked::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background-color: #0ec6d5;
    border-radius: 50%;
}

.full-width-rounded-image {
    width: 100%;
    border-radius: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.link-menu-dashboard-player {
    color: #63972c; 
    font-size:25px; 
    margin-right:10px
}
.link-menu-dashboard-player-active {
    color: #fff; 
    font-size:25px; 
    margin-right:10px
}

.dashboard-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #f8f8f8!important;
    text-align: center;
    padding: 10px;
}
.dashboard-wrapper {
    min-height: 100vh; /* Ensure the wrapper takes the full height of the screen */
    position: relative; /* Allow absolute positioning of the footer */
    padding-bottom: 60px; /* Prevent content from being overlapped by the footer */
}

.btn {
    width: 100%;
    background-color: #4caf50;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #45a049;
}
.btn-outline {
    display: block;
    width: 100%;
    border: 1px solid #4caf50;
    color: rgb(53, 53, 53);
    padding: 15px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    background-color: transparent;
}

.btn-outline:hover {
    border: 1px solid #146818; 
    color: #146818; 
}