
/* sanjaya */
/* Updated title container styles */
.title-container {
    display: flex;
    align-items: center;
    /* background-color: rgba(26, 26, 26, 0.3); Corrected from invalid syntax */
    padding: 10px;
    width: fit-content;
    border-radius: 8px;
    justify-content: center; /* Center content */
}

.title-container img {
    width: 30px; /* Default size for web */
    height: 30px;
    margin-right: 8px;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.247));
}

.title-container span {
    font-size: 20px; /* Default size for web */
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 
                 -3px -3px 8px rgba(0, 0, 0, 0.8), 
                 2px 2px 4px rgba(0, 0, 0, 1);
}

@media screen and (max-width: 768px) {

    /* Adjusted title container for mobile */
    .title-container {
        padding: 8px; /* Slightly smaller padding */
        
    }
    .title-container img {
        width: 5px; /* Smaller icon for mobile */
        height: 5px;
        margin-right: 6px; /* Reduced spacing */
        display: none;
    }
    .title-container span {
        font-size: 14px; /* Smaller text for mobile */
        /* text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 
                    -2px -2px 6px rgba(0, 0, 0, 0.8), 
                    1px 1px 3px rgba(0, 0, 0, 1);  */
        text-shadow: none;
                    
    }
    .winner-content .title-container{
        display: none;
    }
}