

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

html {
    position: relative;
    min-height: 100%;
  }
    
  body {
    margin-bottom: 100px; /* adjust this value to the height of your footer */
  }
  
 

.container {
    max-width: 100%;
   height: max-content;
    padding: 0 20px;
    min-height: 100%;
    max-height: none;
    min-height: calc(100vh - 120px); /* 120px is the height of the footer */
    padding-bottom: 50px;
    padding-bottom: 50px;
}

.container ul {
    list-style: none;
}

.container label {
    font-weight: 600;
}

.container .button {
    padding: 5px 10px;
    border: 0;
    border-radius: 20px;
}

.boxContainer {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #cbd2d9;
    background-color: #f5f7fa;
}


.container h1 {
    padding: 5px;
    font-weight: 400;
    font-size: 32px;
} 
.container h1 span{
    color: #0080ff;
}
.container p {
    color: #dc3545;
}

.container .text-right {
    text-align: right;
}

#submitBtn {
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

#bookmarksList {
    margin: 0;
    padding: 0;
}
#bookmarksList li{
    padding: 10px;
}
#bookmarksList li a{
    color: #333;
    font-weight: lighter;
}
#bookmarksList li a:hover{
    text-decoration: underline;
}
#bookmarksList li p{
    font-size: 18px;
    font-weight: bold;
}

.container ul p {
    color: #323f4b;
}

/* Specific Styles */
.container, .col-12 {
    padding: 0 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.mt-3 {
    width: 100%;
    
}

.formContainer {
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f5f5f5;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: 70vh;
    width:auto;
}

.cardHeading {
    margin: 0;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

#bookmarkForm label {
    display: block;
    margin-bottom: 5px;
}

#bookmarkForm input {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

#bookmarkForm p {
    margin: 0;
    color: red;
    font-size: 14px;
}.bookmarkList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.bookmarkList:hover {
    background-color: #f5f5f5;
}

.bookmarkList li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
#bookmarksList li a{
    color: #333;
    text-decoration: none;
}

.bookmarkList li a:hover {
    text-decoration: underline;
}

.deleteBtn {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.deleteBtn:hover {
    background-color: #c82333;
}

.delete-btn {
    border: none;
   margin: 15px;
    position: relative;
    padding: 4px 9px;
    font-size: 13px;
    background: transparent;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: #c82333;
    z-index: 1;
    font-family: inherit;
    font-weight: 500;
  }
  
  .delete-btn span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border: 4px solid #c82333;
  }
  
  .delete-btn span::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    background: var(--lightgray);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    transition: all 0.3s;
  }
  
  .delete-btn:hover span::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background:#c82333;
  }
  
  .delete-btn:hover {
    color: white;
  }
  
  .delete-btn:active span::before {
    background: #c82333;
  }

  .share-btn {
    background-color:#0080ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  .share-btn:hover{
    background-color: #0070ff;
  }


 