.simple-frame {
    border: 2px solid #ccc; /* A simple, solid border */
    padding: 20px;          /* Space between the border and the text */
    margin: 10px;           /* Space around the entire frame */
    border-radius: 10px;    /* Rounded corners for a softer look */
    background-color: #f9f9f9; /* Light background color */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    width: fit-content;     /* Frame width fits the content */
}
