/* Main Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 24px;
    margin: 20px;
    text-decoration: none;
    background-color: #6b2ebd;
    color: white;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #4a1c82;
}

/* Form Styles */
form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px;
}

label, select, input, button, textarea {
    flex: 1 1 200px;
    width: auto;
    min-width: 150px;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    padding: 5px;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 8px;
    border: 1px solid #ddd;
    word-wrap: break-word;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }
    
    .button {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
    
    label, select, input, button, textarea {
        width: 100%;
        min-width: unset;
    }
}