@import url(//fonts.googleapis.com/css?family=Muli);

body {
    margin: 0;
    padding: 0;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    line-height: 1.0;
    background: #f4f4f9;
    color: #000000;
}

p {
    line-height: 1.0;
}

/* Default link color */
a {
    color: #084c24; /* A darker blue for better visibility */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover effect for links */
a:hover {
    color: #05361a; /* An even darker shade for hover */
    text-shadow: 0 0 5px rgba(3, 42, 27, 0.5); /* Adds a subtle hover effect */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Muli', sans-serif;
    font-weight: normal;
}

h1 {
    padding: 0 0 10px 0;
    margin: 10px 0 20px 0;
}

h2 {
    margin: 30px 0 20px;
}

ol {
    line-height: 1.6;
}

#header {
    padding: 10px 100px;
    font-size: 14px;
    background: #42994f;
    color: #fff;
    border-bottom: 4px solid #162a19;
}

#header a:hover {
    background-color: #42994f;
    text-shadow: 0 0 5px #dfffe2, 0 0 2px white;
    color: white;
}

#header .logo {
    font-family: 'Muli', sans-serif;
    color: #e7e7ee;
    font-size: 22px;
    margin-right: 2rem;
}

#header ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

#header ul.menu li {
    padding: 4px 10px;
}

#header ul.menu li.selected a, #header ul.menu li.selected a:hover {
    color: #9eada2;
    font-weight: bold;
}

#header a {
    color: #f3f7cc;
}

#header .user {
    padding-top: 4px;
}

#header .user form {
    display: inline;
}

#header .user button {
    background: none;
    color: #f3f7cc;
    border: none;
    cursor: pointer;
}

#sub-header {
    padding:10px 200px;
    font-size: 12px;
    background-color: lightgray;
    color: #fff;
    border-bottom:2px solid #162a19;
}

#sub-header .logo {
    font-size: 14px;
    margin-right: 2rem;
}

#side-settings {
    background-color: lightgrey;
    color: #fff;
    border-right:2px solid #162a19;
}

#content {
    padding: 30px 100px;
}

#side-settings-head{
    margin: 50px;
    border-width: 2px;
    border-color: black;
    padding: 5px;
    background-color: black;
}

/* forms */
form {
    overflow: auto;
}

form p {
    width: 100%;
    overflow: auto;
}

label {
    float: left;
    clear: both;
    color: #333;
    margin-bottom: 4px;
}

input, textarea {
    clear: both;
    float: left;
    margin: 0 0 10px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

input:focus, textarea:focus {
    border-color: #1232c0;
    background: #fff;
    box-shadow: 0 0 5px rgba(18, 192, 100, 0.5);
    outline: none;
}

input[type="submit"], a.button {
    font-weight: bold;
    background: linear-gradient(to right, #129a32, #0c9358);
    color: #000000;
    padding: 12px 24px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover, a.button:hover {
    background: linear-gradient(to right, #0fb95c, #08a94e);
    box-shadow: 0 4px 8px rgba(54, 181, 65, 0.2);
}

.assignment-edit-container {
    border-width: 5px;
    border-radius: 10px;
    border-style: solid;
    border-color: gray;
    padding: 1rem;
}

.assignment-detail-container {
    border-width: 5px;
    border-radius: 5px;
    border-style: solid;
    border-color: grey;
    margin: 3rem;
    overflow: hidden;
}

.assignment-lower-container {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assignment-left-content {
    padding: 20px;
}

.assignment-right-content {
    padding: 20px;
}

.assignment-vertical-divider {
    border-left: 5px solid gray;
    height: 100%;
}

.assignment-form-left {
    border-width: 3px;
    border-style: solid;
    border-color: gray;
    padding: 0;
    border-left: 0;
    border-bottom: 0;
    border-top: 0;
    overflow: hidden;
}

.assignment-form-row {
    border-width: 3px;
    border-style: solid;
    border-color: gray;
    padding: 1rem;
    border-bottom: 1;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
}

.assignment-form-bottom {
    border-width: 3px;
    border-style: solid;
    border-color: gray;
    padding: 1rem;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.assignment-form-container {
    border-width: 5px;
    border-radius: 10px;
    border-style: solid;
    border-color: gray;
    margin: 3rem;
    overflow: hidden;
}

.settings-box {
    border-width: 2px;
    border-color: black;
    border-style: solid;
    padding-top: 5px;
    padding-bottom: 5px;
}

.settings-head {
    border-width: 2px;
    border-color: black;
    border-style: solid;
    color: #f3f7cc;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1rem;
    padding-top: 9px;
    padding-bottom: 10px;
    background-color: #42994f;
}

.settings-content {
    border-width: 2px;
    border-color: black;
    border-style: solid;
    border-top: none;
    color: black;
    font-size: 15px;
    padding-top: 7px;
    padding-bottom: 10px;
}

.errorlist {
    color: #cc0033;
    float: left;
    clear: both;
    padding-left: 10px;
}

.helptext {
    margin: 0 0 20px 0;
    color: #aaa;
    clear: both;
    float: left;
    font-size: 11px;
}

.looks-disabled {
    background-color: #e9ecef;
    opacity: 1;
    pointer-events: none;
    cursor: default;
}

/* messages */
ul.messages {
    margin: 10px 100px;
    padding: 0;
    list-style-type: none;
}

ul.messages li {
    margin: 0 0 10px;
    padding: 14px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

ul.messages li.success {
    background: #036d03;
    color: #e8f5e8;
    border-left: 5px solid #0a1d13;
}

ul.messages li.error {
    background: #46725a;
    color: #ffe6eb;
    border-left: 5px solid #0a953f;
}

ul.messages li.info {
    background: #faffae;
    color: #696b4e;
    border-left: 5px solid #c4d836;
}

ul.messages li.warning {
    background: #de9404;
    color: #fff7d5;
    border-left: 5px solid #f1b500;
}