#feedback-widget {
    position: fixed;
    z-index: 10000; /* Ensures it's on top of everything */

    /* Positioning */
    bottom: 20px;
    right: 20px;

    /* Shrink the entire box to 80% */
    transform: scale(0.7);
    transform-origin: bottom right;

    /* Appearance */
    width: 416px;
    height: 812px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    
    /* Internal spacing for the iframe and close button */
    padding: 10px;
    padding-top: 40px;

    /* It should be hidden by default; the script will show it */
    display: none; 
}

#feedback-widget #feedback-close {
    /* Position the 'X' button inside the widget */
    position: absolute;
    top: 5px;
    right: 10px;

    /* Appearance */
    font-size: 24px;
    color: #888;
    cursor: pointer;
    background: none;
    border: none;
}

#feedback-widget iframe {
    width: 100%;
    height: 100%;
    border: none;
}