@import url('https://fonts.googleapis.com/css2?family=Titan+One&display=swap');

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #e9ecef;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top:50px;
}

.content-wrapper {
    flex: 1;
    padding: 20px;
}

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

.content {
    padding: 20px;
}

.container-fluid {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.task {
    
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.task:hover {
    background-color: #f0f0f0;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 50%;
    padding: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.modal-header {
    background-color: #007bff;
    color: #fff;
}

.modal-footer {
    border-top: none;
}

.no-carret.dropdown-toggle::after {
    content: none; 
}

div.line {
    width: 100%; 
    text-align: left; 
    border-bottom: 1px solid #000; 
    line-height: 0.1em;
    margin: 10px 0 20px; 
    font-weight:bold;
  } 
  
  div.line span { 
     background:#ffffff; 
     padding:0 10px; 
  }

.form-check-input{
    border-color : #666;
 }


.form-check-input:checked.good-habit{
    background-color: #63d4af;
    border-color : #63d4af;
 }
 .form-check-input:checked.bad-habit{
    background-color: #F96F5D;
    border-color : #F96F5D;
 }


 .motivational-message-text {
    font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:2rem;

 }
 .congratulation-background {
    background: rgb(110,228,202);
background: linear-gradient(128deg, rgba(110,228,202,1) 32%, rgba(14,105,84,1) 100%);
 }

 .blink {
    animation: blinker 1s 2 alternate;
  }
  
  @keyframes blinker {
    0% {
      background-color: white;
    }
    100% {
      background-color: rgb(157, 214, 152);
    }
  }

  .swiper {
    width: 100%;
    height: 100%;
  }