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

/* Container */
.container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 50px;
}

/* Header */
h1 {
    text-align: center;
    color: #333;
}

/* Input Group */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.input-field {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Text Area Group */
.text-area-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.text-area-container {
    flex: 1;
    min-width: 300px;
}

.text-area-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.text-area {
    width: 100%;
    height: 150px;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    box-sizing: border-box;
}

/* Action Buttons */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.action-btn img {
    margin-right: 10px;
}

.action-btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 95%;
        margin-top: 20px;
        padding: 15px;
    }

    .text-area-group {
        flex-direction: column;
    }

    .text-area-container {
        width: 100%;
    }
}

.nav-icon {
    width: 24px;
    height: 24px;
    max-width: 100%;
    height: auto;
    margin-left: 10px;
}