 body { font-family: 'Times New Roman', Times, serif; }
        .container { max-width: 600px; margin: auto; padding: 20px; }
        label { display: block; margin-top: 10px; }
        input, select, textarea { width: 100%; padding: 10px; margin-top: 5px; }
        
        button {
            background-color: #28a745; /* Green background */
            color: white; /* White text */
            padding: 12px 20px; /* Padding for top/bottom and left/right */
            border: none; /* No border */
            border-radius: 5px; /* Rounded corners */font-size: 16px; /* Font size */
            cursor: pointer; /* Pointer cursor on hover */
            transition: background-color 0.3s ease; /* Smooth transition */
        }
        button:hover {
            background-color: #218838; /* Darker green on hover */
        }