/* login form */
.vh-100 {
  height: 100vh;
}



.h-custom {
  height: 100%;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.h-100 {
  height: 100%;
}

/* login form */


/* flash message  */

.show-notification {
  position: fixed;
  top: 75px; 
  left: 50%; 
  transform: translateX(-50%); 
  z-index: 99;
  opacity: 1;
  width: 100%;
}

.alert-Success {
  color: #155724;
  background-color: #d4edda;
  }
  .alert-Warning {
  color: #856404;
  background-color: #fff3cd;
  }
  .alert-Error {
  color: #721c24;
  background-color: #f8d7da;
  }
/* flash message  */ 


/* folder content */
.folder-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 200px; /* Adjust as needed */
}

.folder-label {
  background-color: #007BFF;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  text-align: center;
}

.folder-list {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px; /* Same as folder label width */
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  max-height: 200px;
  overflow-y: auto;
  padding: 5px;
  margin-top: 5px;
}

.folder-dropdown:hover .folder-list {
  display: block;
}

.folder-checkbox {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.folder-checkbox input {
  margin-right: 10px;
}

/* Optional: Change the cursor when hovering over the dropdown */
.folder-dropdown:hover .folder-label {
  background-color: #0056b3;
}


/* dropdown */
.dropdown {
  position: relative;
  width: 200px;
}

.dropdown-toggle {
  width: 100%;
  padding: 10px;
  border: 2px solid #007bff;
  border-radius: 5px;
  background-color: #f8f9fa;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 2px solid #007bff;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 10px;
}

.dropdown-item input[type="checkbox"] {
  margin-right: 10px;
}
/* dropdown */



/* edit form */

/* Full-screen container to center content */
.main-container {
  height: 80vh; /* Full height of the viewport */
  display: flex; /* Use flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/* Wrapper for centering the form */
.form-wrapper {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px; /* Set max width for form container */
}

/* Styling for the form's header */
.form-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

/* Styling for the table in the form */
.form-table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}

.form-table td {
  padding: 10px;
  vertical-align: middle;
}

.form-label {
  font-weight: bold;
  width: 200px;
}

.form-input {
  width: 100%;
}

.input-field {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-button {
  width: 100%;
  padding: 12px;
  background-color: #1e165e;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #5c5594;
}

/* edit form */



/* old password */
.password-form-container {
  width: 500px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 25px;
}

.password-form-header {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #333;
}

.password-table {
  width: 100%;
  border-spacing: 0 12px;
}

.label-cell {
  text-align: left;
  font-weight: bold;
  color: #444;
  width: 150px;
}

.input-cell {
  text-align: left;
}

.form-input-field {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.update-button {
  background-color: #1e165e;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.update-button:hover {
  background-color: #463e82;
}
/* old password */

/* avatar */
.avatar.avatar-md.avatar-indicators.avatar-online {
  
  margin-left: 118px;
}
/* avatar */


/* login form */
.vh-100 {
  height: 100vh;
}

.h-custom {
  height: 100%;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.h-100 {
  height: 100%;
}

/* login form */


/* flash message  */

.show-notification {
  position: fixed;
  top: 75px; 
  left: 50%; 
  transform: translateX(-50%); 
  z-index: 99;
  opacity: 1;
  width: 100%;
}

.alert-Success {
  color: #155724;
  background-color: #d4edda;
  }
  .alert-Warning {
  color: #856404;
  background-color: #fff3cd;
  }
  .alert-Error {
  color: #721c24;
  background-color: #f8d7da;
  }
/* flash message  */ 


/* folder content */
.folder-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 200px; /* Adjust as needed */
}

.folder-label {
  background-color: #1e165e;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  text-align: center;
}

.folder-list {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px; /* Same as folder label width */
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  max-height: 200px;
  overflow-y: auto;
  padding: 5px;
  margin-top: 5px;
}

.folder-dropdown:hover .folder-list {
  display: block;
}

.folder-checkbox {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.folder-checkbox input {
  margin-right: 10px;
}

/* Optional: Change the cursor when hovering over the dropdown */
.folder-dropdown:hover .folder-label {
  background-color: #0056b3;
}


/* dropdown */
.dropdown {
  position: relative;
  width: 200px;
}

.dropdown-toggle {
  width: 100%;
  padding: 10px;
  border: 2px solid #1e165e;
  border-radius: 5px;
  background-color: #f8f9fa;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 2px solid #1e165e;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 10px;
}

.dropdown-item input[type="checkbox"] {
  margin-right: 10px;
}
/* dropdown */



/* edit form */

/* Full-screen container to center content */
.main-container {
  height: 80vh; /* Full height of the viewport */
  display: flex; /* Use flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; 
  margin-left: 20px;/* Center vertically */
  margin-right: 20px;
}

/* Wrapper for centering the form */
.form-wrapper {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px; /* Set max width for form container */
}

/* Styling for the form's header */
.form-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

/* Styling for the table in the form */
.form-table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}

.form-table td {
  padding: 10px;
  vertical-align: middle;
}

.form-label {
  font-weight: bold;
  width: 200px;
}

.form-input {
  width: 100%;
}

.input-field {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-button {
  width: 100%;
  padding: 12px;
  background-color: #1e165e;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #504b7b;
}

/* edit form */



/* old password */
.password-form-container {
  width: 500px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 25px;
}

.password-form-header {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #333;
}

.password-table {
  width: 100%;
  border-spacing: 0 12px;
}

.label-cell {
  text-align: left;
  font-weight: bold;
  color: #444;
  width: 150px;
}

.input-cell {
  text-align: left;
}

.form-input-field {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.update-button {
  background-color: #1e165e;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.update-button:hover {
  background-color: #4a437c;
}
/* old password */

/* avatar */
.avatar.avatar-md.avatar-indicators.avatar-online {
  
  margin-left: 118px;
}
/* avatar */


/* 
/* user page  
.user-sidebar {
  height: 100vh;
  background-color: #6b6a75;
  padding-top: 109px;
  position: fixed;
  width: 250px;
}
.content {
  margin-left: 250px;
  padding: 20px;
  margin-top: 20px;
}
.user-sidebar a {
  display: block;
  padding: 27px 51px;
  color: #000;
  text-decoration: none;
  font-size: x-large;
}
.user-sidebar a:hover {
  background-color: #007bff;
  color: white;
}
.topbar {
  background-color: #007bff;
  color: white;
  padding: 10px;
} */


/* Header */
.header {
  position: fixed;
  top: 0;
  /* left: 0; */
  width: 100%;
  height: 40px;
  /* background-color: #6b6a75; */
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: -1px 20px;
  z-index: 1000;
}
.header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.header button {
  border: none;
  padding: 10px 15px;
  background-color: #28a745; /* Green */
  color: white;
  cursor: pointer;
}

.header button:hover {
  background-color: #218838;
}

/* Main Content Panel */
.content {
  margin-left: 250px;
  padding: 80px 20px 20px; /* Extra top padding for header */
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}

i.fa-solid.fa-right-from-bracket.fa-lg {
  margin-left: 10px;
}

/* user page  */



/* folder  */
.folder-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start; /* Align folders to the start of the container */
}

.folder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 120px;
  height: 150px;
  /* border: 1px solid #ddd; */
  /* border-radius: 8px; */
  /* background-color: #f9f9f9; */
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  transition: transform 0.2s;
  cursor: pointer;
  text-align: center;
}

.folder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.folder-icon {
  font-size: 100px; /* Larger icon size */
  color: #4caf50; /* Green color for the folder */
  margin-bottom: 10px;
}

.folder-name {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.no-folders {
  font-size: 18px;
  color: #666;
}
/* folder  */

nav.navbar-classic.navbar.navbar-expand-lg {
  width: 100%;
}

svg.feather.feather-home.nav-icon.icon-xs.me-2 {
  height: 300px;
}

.footer-dark {
  background-color: #ffffff;
  background-image: url('../images/Nabantu_Insights_Dashboard-dfwedgp-1080.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  border-bottom: 1px solid #e4ebf3;
  padding: 14px 30px 15px;
  position: relative;
  transform: translate(0%, 0%);
}

.subfolder-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust the gap between the folder cards */
}

.folder-card {
  
  padding: 10px;
  text-align: center;
  width: 120px; /* Width of each folder card */
  background-color: #f9f9f9;
  border-radius: 8px;
}

.folder-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

.folder-card a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.folder-card a:hover {
  color: #007bff;
}


.folder-icon {
  font-size: 76px;
  display: block;
  margin-bottom: 10px;
}

.logout-btn {
  font-size: 18px; 
  color: #ffffff; 
  text-decoration: none; 
  font-weight: bold; 
  padding: 8px 15px; 
  border: none;
  border-radius: 5px; 
  background-color: #1e165e; 
  transition: background-color 0.3s ease; 
}

.logout-btn:hover {
  background-color: #564f87; 
}






