body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
}

h1 {
    margin-bottom: 15px;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #dddddd;
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

a {
    color: blue;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}



.form-container {
    max-width: 600px; /* Limit the form's width */
    margin: 0 auto; /* Center the form */
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%; /* Full width */
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.form-group textarea {
    height: 100px; /* Fixed height for textarea */
    resize: vertical; /* Allow vertical resize */
}

.form-group input[type="submit"] {
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-group input[type="submit"]:hover {
    background-color: #45a049; /* Darker green */
}
.goals-container {
    position: fixed;
    left: -250px; /* adjust this value as needed */
    top: 0;
    width: 250px; /* Width of the goals list */
    height: 100%;
    background-color: #f4f4f4;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: left 0.3s;
    z-index: 1000;
}

.goals-list {
    padding: 20px;
    overflow-y: auto;
    height: 100%;
}

.goal {
    margin-bottom: 10px;
}

.goals-trigger {
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
    width: 20px; /* Width of the trigger bar */
    background-color: #dddddd; /* Background color of the trigger bar */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goals-text {
    transform: rotate(-90deg);
    color: white;
    font-weight: bold;
}

.content-container {
    margin-left: 20px; /* Add left margin to the content container */
}

/* Button Styles */
.btn {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Text size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transition for background and shadow */
    text-align: center; /* Center text */
    display: inline-block; /* Allows setting width and height */
    width: 100%; /* Full width */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Shadow for depth */
}

.btn:hover {
    background-color: #45a049; /* Darker green on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Larger shadow on hover */
}

.btn:disabled {
    background-color: #cccccc; /* Grey background */
    cursor: not-allowed; /* Not-allowed cursor */
    box-shadow: none; /* No shadow */
}
.ck-editor__editable {
    min-height: 500px;
}


