/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 20px;
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: normal; /* Decreased font weight */
    color: #555; /* Adjusted text color */
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

/* Radio button and checkbox styles */
input[type="radio"],
input[type="checkbox"] {
    margin-right: 5px;
    /* Styled radio buttons and checkboxes for better appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #ccc;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    outline: none;
    vertical-align: middle;
    background-color: #fff;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
    background-color: #007bff;
}

/* File input styles */
input[type="file"] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
}

/* Button styles */
button[type="submit"] {
    padding: 12px 24px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

/* Word count styles */
#word-count {
    float: right;
    font-size: 14px;
    color: #888;
}

/* Rounded text areas */
textarea {
    border-radius: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        margin: 20px;
    }
}

/* Floating button styles */
        .floating-button-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999; /* Ensure it's above other content */
        }

        .floating-button {
            background-color: #cda52b;
            color: #fff;
            border: none;
            
            text-align: center;
            
            
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        }

        .floating-button:hover {
            background-color: #0056b3;}

