/* Global Styles */
body {
    background-color: #070808;
    margin: 0;
    padding: 0;
    font-family: "Nunito", serif;
  }

a {
  text-decoration: none;
}
  
  h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Form Container */
  .form-container {
    background-color: #1A1A1B;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
  }
  
  /* Input Fields */
  .input-field {
    width: 100%;
    padding: 10px;
    background-color: #070808;
    border: 0;
    outline: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .input-field:focus {
    border: 1px solid #E63212;
    outline: none;
  }
  
  /* Submit Button */
  .submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #E63212;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* Links */
  .links {
    text-align: center;
  }
  
  .links a {
    color: #E63212;
    text-decoration: none;
    font-size: 14px;
  }
  
  .links a:hover {
    text-decoration: underline;
  }

.page-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 200px; /* Adjust the logo size */
    height: auto;
}

.logo-wrapper {
text-align: center;
margin-bottom: 20px;
}
  

.alert-text {
    color: #fff;
    text-align: center;
}

.white-text *, .white-text {
    color: #fff;
}

/* General Layout for Dashboard */
.dashboard-layout {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Sidebar Styles */
.dashboard-side-bar {
  width: 250px; /* Width of the sidebar */
  background-color: #1A1A1B; /* Sidebar background */
  color: white;
  height: 100vh; /* Sidebar full height */
  display: flex;
  flex-direction: column;
}

.dashboard-side-bar .logo-wrapper {
  margin-bottom: 15px;
  text-align: center;
  margin-top: 40px;
}

.dashboard-side-bar .logo {
  width: 150px; /* Adjust the logo size */
}

.dashboard-side-bar .nav-links {
  list-style: none;
  padding: 0;
}

.dashboard-side-bar .nav-links li {
  margin: 20px 0;
}

.dashboard-side-bar .nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: block;
  display: flex;
  gap: 20px;
}

.dashboard-side-bar .nav-links li a:hover {
  font-weight: bold;
}

/* Content Area Styles */
.dashboard-content {
  flex-grow: 1;
  background-color: #070808;
  padding: 20px;
  overflow-y: auto; /* Enable scrolling if content overflows */
}

.dashboard-content h1 {
  color: #fff; /* CTA color for headings */
}

.dashboard-content p {
  color: white;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .dashboard-layout {
    flex-direction: column; /* Stack sidebar and content on small screens */
  }

  .dashboard-side-bar {
    width: 100%; /* Sidebar takes full width on mobile */
    height: auto; /* Adjust height for mobile */
  }

  .dashboard-content {
    margin-top: 20px; /* Add some space between the sidebar and content on mobile */
  }
}


/* Sidebar Styles */
.sidebar {
  width: 250px;
  background-color: #1A1A1B; /* Sidebar background */
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Logo Wrapper */
.logo-wrapper {
  margin-bottom: 30px;
  text-align: center;
}

/* Logo Styles */
.logo {
  width: 150px;
  /* Adjust logo size if necessary */
}

/* Navigation Links */
.nav-links {
  list-style: none;
  padding: 0;
}

.nav-item {
  margin: 20px 0;
}

.nav-item a {
  color: #fff; /* Default text color */
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.nav-item a:hover {
  background-color: #E63212; /* Background color on hover */
  color: white; /* Text color on hover */
}

/* Active Link */
.nav-item.active a {
  background-color: #E63212; /* Active link background */
  color: white; /* Active link text color */
}

/* Icon Styling */
.nav-icon {
  margin-right: 10px; /* Space between icon and text */
  width: 20px; /* Set width for the inline SVG icon */
  height: 20px; /* Set height for the inline SVG icon */
}


.dashboard {
  padding: 20px;
  color: #fff;
}

.dashboard-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.stats-container {
  display: flex;
  gap: 50px;
}

.stats-card {
  background: #1A1A1B;
  border-radius: 10px;
  flex: 1;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.stats-card .icon-wrapper{
  flex: 0 0 30%;
  text-align: center;
}

.stats-card .stat-info {
  flex: 0 0 70%;
  text-align: left;
}

.stats-card .stat-info h2{
  text-align: left;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.dashboard-title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.date-range-filter {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
}

.date-range-filter input[type='date'] {
  padding: 10px 15px;
  /* border: 1px solid #ccc; */
  border-radius: 4px;
  background-color: #1a1a1b;
  color: #fff;
  outline: none;
  border: 0;
}

.recent-jobs-card {
  background-color: #1a1a1b;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-header h2 {
  font-size: 20px;
  color: #fff;
}

.see-more {
  color: #e63212;
  font-size: 14px;
  text-decoration: none;
}

.recent-jobs-table {
  width: 100%;
  border-collapse: collapse;
}

.recent-jobs-table th, .recent-jobs-table td {
  padding: 10px;
  text-align: center;
}

.recent-jobs-table td {
  border-bottom: 1px solid #ccc;
}

.recent-jobs-table th {
  color: #fff;
}

.recent-jobs-table td {
  color: #fff;
}

.view-details-btn {
  padding: 5px 10px;
  background-color: #e63212;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

.view-details-btn:hover {
  background-color: #c22709;
}

.add-file-cta button {
  background: #e63212;
  color: #fff;
  border: 0;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.search-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-bar input {
  background: #070808;
  color: #fff;
  border: 0;
  padding: 10px;
  outline: none;
  border-radius: 4px;
}

.search-filter-bar button {
  color: #fff;
  border: 0;
  padding: 9px;
  background: #e63212;
  border-radius: 4px;
}

.job-name-input {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.job-name-field {
  flex: 0 0 70%;
  background: #1a1a1b;
  border: 0;
  outline: 0;
  padding: 15px;
  border-radius: 4px;
}

.upload-description {
  font-size: 22px !important;
}

.upload-file {
  display: flex;
  gap: 50px;
  align-items: center;
}

.file-upload-area {
  border: 1px dashed #fff;
  flex: 0 0 50%;
  height: 250px;
  border-radius: 9px;
}

.instructions-box {
  background: #000;
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 10px 40px;
  color: #fff;
}

.download-button {
  color: #605BFF;
  background: unset;
  border: 0;
  cursor: pointer;
}

.file-upload-area {
  border: 1px dashed #fff;
  flex: 0 0 50%;
  height: 250px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.next-button {
  color: #fff;
  background: #e63212;
  border: 0;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.dashboard-content p {
  color: #5e5e60;
  font-size: 14px;
}

.bottom-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.submit-button {
  background: #e63212;
  color: #fff;
  border: 0;
  outline: 0;
  border-radius: 4px;
  padding: 10px 15px;
}

.wallet-summary {
  display: flex;
  gap: 50px;
  justify-content: space-around;
  color: #fff;
}

.coin-summary, .payment-method {
  flex: 1;
}

.summary-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-button {
  background: #e63212;
  color: #fff;
  border: 0;
  outline: 0;
  border-radius: 4px;
  padding: 10px 15px;
}

.balance-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.usage-info span {
  display: block;
}

.usage-label {
  font-size: 10px;
}

.usage-bar {
  background: #000;
  height: 15px;
  border-radius: 4px;
  margin-top: 10px;
}

.usage-bar-fill {
  height: 15px;
  background: #e63212;
}

.card-grid {
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-info {
  display: flex;
  flex-direction: column;
}

.change-button {
  color: #e63212;
  text-decoration: none;
}

.bottom-div.left {
  justify-content : flex-end
}

.settings-container {
  color: #fff;
}

.password-fields {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.password-fields input {
  flex: 1;
}

.settings-container input {
  padding: 13px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #1a1a1b;
  width: 32%;
}

.save-button {
  margin-bottom: 20px;
  display: inline-block;
  margin-top: 20px;
}

.detail-row, .cancel-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.notification-toggle {
  display: flex;
  gap : 20px
}

.notification-toggle input{
  width: unset;
}