/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1d1d1d;
    backdrop-filter: blur(100px);
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 1);

}

/* Modal Container */
.logout-modal {
    background-color: #2c2c2c;
    border-radius: 12px;
    width: 700px;
    text-align: center;
    color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-box img {
    width: 300px;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
}

/* Confirmation Text */
.confirmation-text {
    font-size: 33px;
   margin-top: 30px;
    font-weight: 600;
}


hr{
    border: none;
    height: 2px;
    background-color: rgba(255, 255, 255, 1);
    width: 18%;
    margin: 11px 82px;
    margin-bottom: 30px;
}
/* Button Group */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.no-button, .yes-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.no-button {
    background-color: #4b4b4b;
    color: #fff;
}

.yes-button {
    background-color: rgba(254, 207, 15, 1);
    color: #000;
}

.no-button:hover {
    background-color: #636363;
}

.yes-button:hover {
    background-color: #ffda33;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    
}

.social-icons a {
    cursor: pointer;
    text-decoration: none;
    color: #888;

}

.social-icons span:hover {
    color: #f6c708;
}
