* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #FFF5F7;
}

.btn {
    width: 180px;
    height: 75px;
    border-radius: 10px;
    font-size: 18px;
    border: 1px solid #535353;
    cursor: pointer;
}

.ButtonRow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

#btnAccept {
    background-color: #E63946;
    color: white;
    border: none;
}

#btnAccept:hover {
    background-color: #D62839;
    transform: scale(1.05);
}

#btnDecline {
    background-color: #2B2D42;
    color: white;
    border: none;
}

#btnDecline:hover {
    background-color: #1F2233;
    transform: scale(1.05);
}

.SoruContainer {
    background-color: #FFFFFF;
    width: 40%;
    margin: 0px auto;
    padding: 35px 50px;
    margin-top: 53px;
    border-radius: 10px;
    border: 1px solid #535353;
    box-shadow: 0 10px 30px rgba(255, 105, 135, 0.15);
}

.txtDiv {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.btn-sik {
    background-color: #FFFFFF;
    color: #333;
    border: 2px solid #FFB3C1;
}

.btn-sik:hover {
    background-color: #FFE5EC;
    border: 2px solid #FF4D6D;
    transform: scale(1.05);
}

[id^="soru"] {
    display: none;
}

#soru0 {
    display: block;
}

.sayac {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    color: #2E2E2E;
}

#dialogKutusu {
    background-color: rgb(221, 82, 2);
    position: fixed;
    flex-direction: column;
    width: 20%;
    padding: 35px 50px;
    border-radius: 10px;
    border: 1px solid #535353;
    box-shadow: 0 10px 30px rgba(150, 105, 255, 0.15);
    z-index: 0;
    left: 160px;
    bottom: 200px;
    display: none;
}

#dialogYazi {
    text-align: center;
    margin-bottom: 10px;
}

#dialogGif {
    width: 100%;
}

#sonuc {
    display: none;
    flex-direction: column;
    text-align: center;
}