
.issue .icon {
    width: 2rem;
}

.msg.success {
    color: darkgreen;
}

.msg.error {
    color: darkred;
}

.input {
    height: 2rem;
    padding: 0 0.5rem;
    background-color: white;
    border: 1px solid lightgrey;
    border-radius: 0.25rem;
    outline: none;
}

.input:focus {
    box-shadow: 0 0 0.5rem lightgrey;
}

.loader {
    border: 0.1rem solid #f3f3f3; /* Light grey */
    border-top: 0.1rem solid #3498db; /* Blue */
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    animation: spin 1.5s linear infinite;
}

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

button.edit {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem !important;
    padding: 0;
    margin: 0.2rem;
    color: #555;
    background-color: transparent;
    border: 1px solid lightgrey;
    border-radius: 0.2rem;
    -webkit-transform: rotateZ(90deg) scale(1.5);
    -ms-transform: rotateZ(90deg) scale(1.5);
    -o-transform: rotateZ(90deg) scale(1.5);
    transform: rotateZ(90deg) scale(1.5);
    outline: none;
}

button.edit:focus {
    box-shadow: 0 0 0.25rem lightgrey;
}

#issuesList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 5rem;
    width: 100%;
}

#issuesList > .issue {
    width: 100%;
}

.search_imm {
    position: relative;
}

.search_result_container {
    display: none;
    background-color: #fafafa;
    position: absolute;
    top: 2.5rem;
    left: 0;
    right: 0;
    border: 1px solid lightgrey;
    border-radius: 0.25rem;
    box-shadow: 0 0 1rem lightgrey;
    margin: 0 1rem;
    z-index: 1;
}

.search_result_container li:focus {
    color: darkred;
}

.search_res_imm {
    padding: 0.25rem 0.5rem;
    margin: 0;
}

.search_res_imm > li {
    list-style: none;
}

.search_res_imm > li:hover {
    cursor: pointer;
    color: darkred;
}

.disable-me {
    pointer-events: none;
}
