@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Gloria+Hallelujah&display=swap');

.btn-danger {
    background-color: #7A1B17;
    border-color: #7A1B17;
}

.btn-danger:hover {
    background-color: #611512;
    border-color: #611512;
}

.btn-outline-danger {
    border-color: #7A1B17;
    color: #7A1B17;
}

.btn-outline-danger:hover {
    border-color: #7A1B17;
    background-color: #7A1B17;
}

.form-control:focus {
    border-color: #7A1B17;
}

input:focus {
    outline: none;
}

/* Menghilangkan default appearance untuk browser */
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #7b4746;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
}

/* Mengatur lingkaran luar ketika dihover */
input[type="radio"]:hover {
    border-color: #611512;
}

/* Mengatur lingkaran dalam saat dicentang */
input[type="radio"]:checked::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #611512;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


body {}

.main-sidebar {
    background-color: #7A1B17;
}

.brand-link {
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 400;
    font-style: normal;
}

.main-sidebar .brand-link {
    color: #FFF8E8;
    text-align: center;
    border-bottom: 1px solid #FFF8E8;

    font-family: "Gloria Hallelujah", cursive;
    font-weight: 400;
    font-style: normal;
}

.main-sidebar .brand-link .brand-text span {
    font-size: 16px;
}

.main-sidebar .nav-link {
    color: #fff8e863 !important;
}

.main-sidebar .nav-link:hover {
    color: #FFF8E8 !important;
}

.main-sidebar .nav-link.active {
    background-color: #FFF8E8 !important;
    color: #7A1B17 !important;
}

.main-sidebar .nav-link.active-2 {
    color: #FFF8E8 !important;
}

.main-header {
    background-color: #FFF8E8;
    border-bottom: 0;
}

.main-header .btn-bars {}

.content-wrapper {
    background-color: #FFF8E8;
    padding-bottom: 20px;
}

.content-wrapper .content * {
    font-size: 19px;
}

.main-footer {
    background-color: #FFF8E8;
    border-top: 0;
}

.container-latihan {
    /* display: flex;
    justify-content: space-between;
    margin-top: 50px; */
    position: relative;
    /* height: 400px;
    width: 800px; */
}

.container-latihan .item,
.container-latihan .target {
    width: 50px;
    height: 50px;
    border: 1px solid black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-latihan .item.dragging {
    opacity: 0.5;
}

.container-latihan .target.correct {
    background-color: lightblue;
}

.container-latihan .target.wrong {
    background-color: pink;
}

.container-latihan svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}