* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

#resultModalBody {
    position: relative; /* Added for pseudo-element positioning */
    padding: 20px;
    background-color: rgb(255, 254, 254);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
    font-family: Arial, sans-serif; /* Font family */
    z-index: 1; /* Ensure text stays above background */
}

#resultModalBody::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%; /* Adjust size as needed */
    height: 80%;
    background: url("plawd.png") no-repeat center center;
    background-size: contain;
    opacity: 0.08; /* Adjust transparency */
    transform: translate(-50%, -50%);
    z-index: 0;
}

#resultModalBody p,
#resultModalBody small,
#resultModalBody i,
#resultModalBody b {
    position: relative; /* Keep text above logo */
    z-index: 1;
    margin-bottom: 20px;
    color: #6c757d;
}

#resultModalBody small {
    font-size: 80%; /* Adjust the font size as desired */
}

#resultModalBody b {
    font-size: 18px; /* Increase font size */
}

.modal-header {
    background-color: #d1ecf1; /* Info alert background color */
    color: #000; /* Font color for info alert */
}

.container {
    max-width: 600px;
}
