:root {
    --primary-bg-light: #f5f5f5;
    /* Light mode background color */
    --primary-bg-dark: #1a1a1a;
    /* Dark mode background color */

    --primary-text-light: #333;
    /* Light mode text color */
    --primary-text-dark: #e0e0e0;
    /* Dark mode text color */

    --accent-color-light: #3498db;
    /* Light mode accent color */
    --accent-color-dark: #2980b9;
    /* Dark mode accent color */

    --secondary-bg-light: #ffffff;
    /* Light mode secondary background color */
    --secondary-bg-dark: #2c3e50;
    /* Dark mode secondary background color */

    --border-color-light: #dcdcdc;
    /* Light mode border color */
    --border-color-dark: #34495e;
    /* Dark mode border color */

    --box-shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Light mode box shadow */
    --box-shadow-dark: 0 2px 4px rgba(0, 0, 0, 0.6);
    /* Dark mode box shadow */

    --link-color-light: #3498db;
    /* Light mode link color */
    --link-color-dark: #2980b9;
    /* Dark mode link color */

    --link-hover-light: #217dbb;
    /* Light mode link hover color */
    --link-hover-dark: #1a6390;
    /* Dark mode link hover color */

    --white1: #ffffff;
    --white2: #f8f8f8;
    --white3: #e9e9e9;
    --white4: #dcdcdc;
    --black1: #222222;
    --black2: #2c2c2c;
    --black3: #000000;
}

/* Define the styles for the scrollbar track */
::-webkit-scrollbar {
    width: 10px;
}

/* Define the styles for the scrollbar handle */
::-webkit-scrollbar-thumb {
    background-color: var(--white2);
    /* Change the color to your preference */
    border-radius: 6px;
    opacity: 0.8;
}

/* Define the styles for the scrollbar track on hover */
::-webkit-scrollbar-track:hover {
    background-color: #f1f1f1;
    /* Change the color to your preference */
}

/* Define the styles for the scrollbar handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #2c3e50;
    /* Change the color to your preference */
}

/* Define the styles for the scrollbar corner */
::-webkit-scrollbar-corner {
    background-color: transparent;
}

body {
    background-color: var(--white4);
    font-family: 'Ubuntu', sans-serif;

}
a{
    text-decoration: none;

}
input[type="text"],
input[type="email"] {
    font-size: 16px;
  width: 300px;
  padding: 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid var(--border-color-light); /* Light mode border color */
  border-radius: 50px;
  background-color: var(--secondary-bg-light); /* Light mode background color */
  color: var(--primary-text-light); /* Light mode text color */
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;

  /* Dark mode styles */

}

input[type="number"]::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: #777;
}

input[type="number"]:focus,
input[type="text"]:focus,
input[type="email"]:focus {
  border: 1px solid var(--accent-color-light); /* Light mode accent color */
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5); /* Light mode box shadow */

  /* Dark mode styles */
  /* border: 1px solid var(--accent-color-dark);
  box-shadow: 0 0 5px rgba(41, 128, 185, 0.5); */
}

select {
    font-size: 16px;
    width: 300px;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid var(--border-color-light); /* Light mode border color */
    border-radius: 50px;
    background-color: var(--secondary-bg-light); /* Light mode background color */
    color: var(--primary-text-light); /* Light mode text color */
    transition: border-color 0.3s, background-color 0.3s, color 0.3s;
    
    /* Dark mode styles */
    /* background-color: var(--secondary-bg-dark); 
    color: var(--primary-text-dark); */
  }
  
  select:focus {
    border: 1px solid var(--accent-color-light); /* Light mode accent color */
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5); /* Light mode box shadow */
    
    /* Dark mode styles */
    /* border: 1px solid var(--accent-color-dark);
    box-shadow: 0 0 5px rgba(41, 128, 185, 0.5);  */
  }
  


.menubar{
    display: flex;
    background-color: var(--white1);
    justify-content: space-between;
    padding: 5px 15px;
    border-radius: 10px ;
    align-items: center;
}
.logo{
    font-family: 'Pacifico', cursive;
    font-size: 30px;
}
.menucon{
    display: flex;
    
}
.menui{
cursor: pointer;
padding: 10px 15px;
border-radius: 50px;
text-transform: capitalize;
}
.menui.active{
    background-color: var(--white1);
    box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
}
.sec0{
    display: flex;
    gap: 5px;
}
.sec1{
    height: calc(100vh - 125px);
    background-color: var(--white2);
    margin-top: 5px;
    border-radius: 10px;
    overflow-y: scroll;
    width: calc(100vw - 310px);
    padding: 20px;
}
.sec2{
    height: calc(100vh - 85px);
    background-color: var(--white3);
    margin-top: 5px;
    border-radius: 10px;
    overflow-y: scroll;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
   padding: 0 20px ;
    
}
.btn1{
    margin-top: 5px;
    cursor: pointer;
/* padding: 10px 15px; */
width: 135px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50px;
background-color: var(--white1);
font-size: 18px;
text-transform: capitalize;
}
.sec11{
    display: flex;
    gap: 25px;
}
.form1{

}
label{
    text-transform: capitalize;
}

.btn2{
    background-color: var(--white1);
    border-radius: 50px;
    width: fit-content;
    height: fit-content;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.btn2 span{
    padding: 15px 15px;
    cursor: pointer;
}
.btn3{
    cursor: pointer;
padding: 10px 15px;
border-radius: 50px;
background-color: var(--white1);

font-size: 18px;
border: none;
}





/* table */

table {
    border-collapse: collapse;
 
    margin: 20px 0;
}

th, td {

    padding: 8px;
    text-align: left;
  width: auto;
    cursor: pointer;

}

th {
    background-color:var(--black3);
    color: var(--white1);
 

}
.pricecol{
    text-align: right;
}

tr:hover {
    background-color: #c42c2c;
}



 /* upload form */
 .uploadsec1,.addparagraph, .addlink{
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    background-color: #000000d5;
z-index: 1;
    top: 0;
    left: 0;
}
.uploadsec3, .uploadsec4, .uploadsec5{
    background-color: var(--white2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
border-radius: 20px;
    z-index: 99;

}
.hidden{
    display: none;

}
.af-close{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 11;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

.addqbtn{
    cursor: pointer;
    margin-top: 30px;
    padding: 15px 20px;
    border-radius: 50px;
    background-color: var(--black3);
    color: var(--white1);
    border: none;
    font-size: 18px;
}
.deletebtn{
    cursor: pointer;
    margin-top: 30px;
    padding: 15px 20px;
    border-radius: 50px;
    background-color: red;
    color: var(--white1);
    border: none;
    font-size: 18px;
}

.form{
    padding: 15px;
    background-color: var(--white2);
    margin: 5px;
    border-radius: 10px;
}
.dashboard{
    padding: 15px;
    background-color: var(--white2);
    margin: 5px;
    border-radius: 1000px;
}
.currentcfb{
    font-size: 24px;
    padding:  0 15px;
}