* {
    padding: 0;
    margin: 0;
}


article {
    height: auto;
    /* position: absolute; */
    position: relative;
    min-height: 80vh;
    padding-bottom: 40px;
    background-color: #f5f5f5;
    /* display: flex; */
    /* justify-content: center; */
}

header {
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3498db;
}
.headerItem {
    text-decoration: none;
    padding-left: 10px;
    align-items: center;
    color: whitesmoke;
}
.meny {
    display: flex;
    justify-content: right;
    width: 40%;
}
a {
    text-decoration: none;
}

.div-note {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.notatlapperHeading {
    display: flex;
    justify-content: center;
}

footer {
    background-color: #333333;
    height: 80px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 0;

}

.page-container {
    position: relative;
    min-height: 100vh;
  }
  
  .content-wrap {
    padding-bottom: 2.5rem;    /* Footer height */
  }


  .add-note {
    background-color: yellow;


    border: 2px solid black;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}

#btn-delete-doneNotes {
    width: 100%;
    display: flex;
    /* justify-content: center; */
}

.note-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.note-status {
    color: #666666;
    font-size: 14px;
}

.check-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}


.delete-button {
    background-color: #FF6347;
    color: white;
    border: none;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 5px;
}

.note-container.checked {
    /* Your styles for checked notes */
    background-color: #f0f0f0;
    /* Replace with your desired greyish color */
}
  @media screen and (max-width: 450px) {
    .note-container {
        width: 90%;
        /* display: flex;
        justify-content: center; */
    }



  }

  