#app {
    display: flex;
    align-items: center;
    justify-content: center;
}

.title {
    margin: 10px;
}

.divider {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.divider hr {
    width: 100%;
}

.divider-text {
    color: black;
    background-color: white;
    font-size: 20px;
    text-align: center;
    margin: auto 10px;
    padding: 0 10px;
}

.box {
    width: 600px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.box.loaded {
    opacity: 1;
}

.search-input {
    width: 100%;
    padding: 10px;
    border-radius: 999px;
    border: 2px solid #dddddd;
    background-color: #dddddd;
    color: black;
    margin-bottom: 20px;
}

.img-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.exam-card {
    display: flex;
    flex-direction: row;
    background-color: #dddddd;
    border-radius: 22.5px;
    padding: 20px;
    margin-bottom: 20px;
}

.exam-card-content {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: space-between;
    width: 70%;
    margin-left: 40px;
}

.exam-card-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.exam-point {
    padding: 7px;
}

.difficulty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 999px;
    padding: 3px 7px;
    margin-right: 15px;
}

.difficulty.kolay {
    background-color: #4fbf48;
}

.difficulty.orta {
    background-color: rgb(201, 130, 0);
}

.difficulty.zor {
    background-color: rgb(190, 0, 0);
}

.time {
    border-radius: 999px;
    padding: 3px 10px;
    background-color: #cccccc;
    margin-right: 10px;
}

.clock-img {
    width: 25px;
    height: auto;
}

.btn {
    width: auto;
    height: 40px;
    display: flex;
    border-radius: 999px;
    padding: 3px 10px;
    padding-top: 5px;
    background-color: black;
    color: white;
    text-decoration: none;
    text-align: left;
    overflow: hidden;
}

.btn.restart:hover {
    text-align: left;
    width: 150px;
}

.btn.start:hover {
    text-align: left;
    width: 110px;
}

.btn .button_arrow_svg {
    transform: translateX(300px);
    transition: transform 0.3s ease-in-out;
}

.btn:hover .button_arrow_svg {
    transform: translateX(10px);
}

.btn-text {
    margin-left: 0px;
    white-space: nowrap;
    transition: margin-left 0.3s ease-in-out;
}

.btn:hover .btn-text {
    margin-left: 3px;
}

.start {
    width: 65px;
    transition: width 0.3s ease-in-out;
}

.restart {
    width: 105px;
    transition: width 0.3s ease-in-out;
}

.completed {
    border: green 2px solid;
}

.completed {
    border: #4fbf48 2px solid;
}

.completed.time{
    border: green 0px solid;
    background-color: #4fbf48;
}

.loader {
    border: 12px solid #f3f3f3;
    border-top: 12px solid var(--primary--primary-600);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
    margin: 70px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}