
.top-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    /* background-color: rgba(255, 255, 255, 0.95); */
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1100;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-bottom: 50px; /* Add space for the grabber */
    box-sizing: border-box; /* Ensure padding is included in the height */
    display: flex;
    flex-direction: column;
}

.top-sheet.visible {
    transform: translateY(0);
}

.top-sheet .top-sheet-grabber-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-sheet .sheet-grabber-container {
    cursor: pointer;
}

.top-sheet .sheet-chevron {
    width: 24px;
    height: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #5f6368;
}

#rules-top-sheet .google-content {
    padding: 0 15px;
}
