@font-face {
    font-family: 'mops';
    src: url('../fonts/mops.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: 'mops', serif;
    margin: 0;
    height: 100%;
    background-size: cover;
    color: #EAEAEA;
    background: #0e0e0e url(../images/back.png) center center no-repeat;;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

h1, h2 {
    color: #A5BD77;
    text-shadow: 1px 2px 2px black;
    border-bottom: 2px solid #738453;
    padding-bottom: 4px;
}

#tag-filter {
    margin-bottom: 20px;
}

input, textarea, select {
    background-color: #1e1e1e;
    color: #EAEAEA;
    border: 1px solid #738453;
    padding: 6px;
    border-radius: 4px;
    font-family: 'mops', serif;
}

button {
    background-color: #A5BD77;
    color: #1e1e1e;
    border: 2px solid #FFFFFF;
    padding: 6px 12px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'mops', serif;
}

button:hover {
    background-color: #FFFFFF;
    color: #A5BD77;
    border-color: #A5BD77;
}

.board {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px;
}

.column {
    background-color: #1e1e1ee6;
    border: 2px solid #A5BD77;
    border-radius: 6px;
    padding: 10px;
    width: 30%;
    min-height: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    
    max-height: 80vh;
    overflow-y: auto;
}

.board .column:nth-child(1) h2 {
    color: #74b6f8;
    border-bottom: 2px solid #5698da;
}
.board .column:nth-child(2) h2  {
    color: #f29f3c;
    border-bottom: 2px solid #de9f2a;
}
.board .column:nth-child(3) h2  {
    color: #96be4d;
    border-bottom: 2px solid #96be4d;
}
.board .column:nth-child(4) h2  {
    color: #9b90ba ;
    border-bottom: 2px solid #9b90ba;
}
.board .column:nth-child(5) h2  {
    color: #fc4e57;
    border-bottom: 2px solid #de2a78;
}

.board .column:nth-child(1) .task strong {
    color: #74b6f8;
}

.board .column:nth-child(2) .task strong {
    color: #f29f3c;
}

.board .column:nth-child(3) .task strong {
    color: #96be4d;
}

.board .column:nth-child(4) .task strong {
    color: #9b90ba;
}

.board .column:nth-child(5) .task strong {
    color: #fc4e57;
}




.task {
    background-color: #292929;
    border: 1px solid #738453;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    cursor: move;
}

.task .tags {
    font-size: 0.85em;
    color: #A5BD77;
    margin-top: 6px;
}

.readonly .task {
    cursor: default;
}

.task-actions {
    margin-top: 5px;
}

.task-actions button {
    background-color: #A5BD77;
    border: none;
    padding: 4px 8px;
    font-size: 0.85em;
    margin-right: 4px;
    border-radius: 4px;
    color: #1e1e1e;
}

.task-actions button:hover {
    background-color: #fff;
    color: #738453;
}

.task-title {
    color: #A5BD77;
    font-weight: bold;
    font-size: 1.2em;
}

.task-description {
    color: #b3be9d;
    margin-left: 15px;
}

hr {
    border: none;
    border-top: 1px solid #444;
    margin: 20px 0;
}

.main {
    flex: 1;
    overflow-y: auto;
    background-color: #1e1e1ee6; /* Kontrastierte SchwarztÃ¶ne */
    color: #FFFFFF;
    user-select: text;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px); /* Glas-Effekt mit UnschÃ¤rfe */
    -webkit-backdrop-filter: blur(2px); /* Safari-UnterstÃ¼tzung */
    min-height: 100%;
}


/* Font Import */
@font-face {
    font-family: 'mops';
    src: url('fonts/mops.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'mops';
    src: url('fonts/mops.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}