/* Import field */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Variables & Scrollbar */
:root {
    --corBTNsize: 70px;
    scrollbar-color: rgb(210,210,210) rgb(46,54,69) !important;
    scrollbar-width: thin !important;
    --BgRadiantDefault: linear-gradient(315deg, #ffffff 0%, #d7e1ec 74%);
    --BgRadiantDark: linear-gradient(315deg, #6e6e6e, #686868);
}

html {
    scroll-behavior: smooth;
    padding: 0;
}

/* Main Body */
body {
    background: var(--BgRadiantDefault); 
    font-family: Arial, sans-serif; 
    color: #3a3a3a;
    transition: color 0.5s;
    height: 500vh;
    padding: 0;
    margin: 0;
}

body.dark-mode {
    background: var(--BgRadiantDark);
    margin: none; 
    font-family: Arial, sans-serif; 
    color: #e60000;
    transition: color 0.5s;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: fixed;
    width: 100%;
    transition: transform 0.25s;
    top: 0px;
    z-index: 10;
}

li {
    float: left;
}
  
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
  
  /* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #000000;
}

#navBarPlaceholder {
    margin-bottom: 47px;
}

/* Popup windows */
.popup_img {
    width: 100%; /* Adjust the width as needed */
    border-radius: 10px;
}
.popup_images img {
    width: 30%; /* Adjust the width of the images inside the popup */
    border-radius: 20px;
    margin: 5px 0;
    align-content: right;
    float: left;
    padding-right: 10px;
}
.popup button {
    border: gray groove 5px;
    border-radius: 10px;
    cursor: pointer;
    background-color: gray;
}
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 75%;
  padding: 20px;
  background: var(--BgRadiantDefault); 
  border: 2px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 10px;
}
.popup.dark-mode {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 75%;
    padding: 20px;
    background: var(--BgRadiantDark); 
    border: 3px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 10px;
  }
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.808);
  z-index: 900;
}
#modePopup {
    color: rgb(34, 34, 34);
    font-family: sans-serif;
    font-size: 30px;
}
#modePopup.dark-mode {
    color: rgb(252, 252, 252);
    font-family: sans-serif;
    font-size: 30px;
}

/* Images */

.img_c1 {
    width: 24%;
    border-radius: 10px;
    opacity: 0.4;
    margin: 3px;
    cursor: pointer; /* Add cursor style for better user interaction */
    background: none;
}

/* Corner Buttons */

.corBTN {
    cursor: pointer;
}

#account{
    width: var(--corBTNsize);
}

#settings{
    width: var(--corBTNsize);
    padding-left: 5px;
}
.corners {
    position: fixed;
    display: flex;
    width: 100%;
    top: 92.4%;
    justify-content: space-between;
    align-self: center;
}
