:root {
    --main-color: #E1F2FE;
    --secondary-color: #C1C0D8;
    --third-color: #4E5166;
}

/* HTML */
body {
    background: var(--main-color);
    margin: 0px;
}

/* SIDEBAR */
#sidebar, #mobileSidebar {
    background-color: var(--third-color);
}

/* HEADER */
header {
    background: var(--secondary-color);
    /* background: linear-gradient(90deg, #e74e94 0%, #f35a84 17%, #f96a76 34%, #fb7c6b 50%, #f98c65 67%, #f98e64 84%, #f4a062 100%); */
}

.header_button {
    background-color: #1E90FF;
}

.header_button:hover {
    background-color: #6437c8;
    color: #ffffff;
}

.dropdown-content {
    background-color: #ffdddd;
}

.dropdown_button:hover {
    background-color: #ffc4c4;
}

/* BUTTONS */
.edit {
    background-color: lightyellow;
}

/* BIG SPINS FOR UPLOADS */
#uploading {
    position: fixed;
    right: 2%;
    bottom: 10%;
    background-color: white;
    border: solid black 1px;
    border-radius: 5px;
}

#uploading-clips {
    display: flex;
    flex-direction: column-reverse;
}

.uploading-clip {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.uploading-clip > .title {
    margin: 0px;
}

.loading {
    margin-left: 5px;
    margin-right: 5px;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid orange;
    width: 8px;
    height: 12px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.bg {
    fill: none;
    stroke-width: 5px;
    stroke: #1A2C34;
}

.meter {
    fill: none;
    stroke-width: 5px;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke: lime;
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
    animation: all .75s ease-out;
}

.progress {
    align-self: center;
    width: 30px;
    height: 30px;
    margin: 1em;
}

.uploading-clip > span {
    align-items: center;
    display: flex;
}

.uploading-done {
    color: green;
}

.notification {
    border-radius: 100%;
    padding-left: 3px;
    padding-right: 3px;
    background-color: red;
    color: white;
}

/* PYTHON SCRIPT */
#pythonScript {
    padding: 20px;
    font-size: 24px;
}

#pythonScript.checking {
    background-color: yellow;
}

#pythonScript.working {
    background-color: lightcoral;
}

#pythonScript.free {
    background-color: lightgreen;
}

#pythonScript.done {
    background-color: lightgray;
}