div#kites_timer_container {
    max-width: 280px;
    background-color: #ffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    position: relative;
    border: solid 3px #ccc;
    text-align: center;
    margin: 0px auto;
}

.kites_user_name {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
    border-bottom: solid 2px #ccc;
}

.kites_basic_info {
    font-size: 13px;
    padding: 5px 0px;
}

span#clockin_timer_title {
    font-size: 14px;
    font-weight: 600;
}

.kites_current_time_area {
    background-color: #ddd;
    padding: 3px 10px;
}

span#current_timer_title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

textarea#break_note {
    width: 86%;
    min-height: 153px;
    font-size: 17px;
    border-radius: 5px;
}

button.swal2-confirm.swal2-styled {
    display: inline-block;
    width: 100%;
    background-color: #41a147;
    border: none;
    color: #ffff;
    cursor: pointer;
    margin-top: 22px;
    border-radius: 0px !important;
}

span#kites_clockin_time {
    font-size: 15px;
    display: block;
    background-color: #a0efaa;
    margin-bottom: 5px;
}

span#kites_current_time {
    font-size: 14px;
    color: green;
    font-weight: bold;
}

button.kites_clock_in_btn {
    display: inline-block;
    width: 100%;
    background-color: #41a147;
    border: none;
    color: #ffff;
    padding: 15px 10px 15px 10px;
    cursor: pointer;
    margin-top: 22px;
}

.kites_clock_in_info {
    font-size: 12px;
    margin-top: 10px;
    background-color: #e2ef98;
}

a.kites_logout_button {
    display: inline-block;
    width: 100%;
    background-color: #666;
    border: none;
    color: #ffff;
    padding: 10px 0px 10px 0px;
    cursor: pointer;
    margin-top: 70px;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
}

.loader {
    width: 48px;
    height: 48px;
    border: 2px solid #41a147;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 0;
    background: #41a147;
    width: 3px;
    height: 24px;
    transform: translateX(-50%);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.kites_loading_area {
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background-color: white;
}

.kites_loading_area loader {
    margin-top: 40%;
}

.kites_loading_area .loader {
    margin-top: 62%;
}

button.kites_break_in_btn {
    display: inline-block;
    width: 100%;
    background-color: #135e96;
    border: none;
    color: #ffff;
    padding: 15px 10px 15px 10px;
    cursor: pointer;
    margin-top: 22px;
}