:root {
  --primary-color: #009579;
  --secondary-color: #00957a;
  --black: #000000;
  --white: #ffffff;
  --gray: #efefef;
  --gray-2: #757575;

  --facebook-color: #4267B2;
  --google-color: #DB4437;
  --twitter-color: #1DA1F2;
  --insta-color: #E1306C;
}
*{  font-family:'Times New Roman', Times, serif;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #F8F9FA;
}

.jumbotron {
    background-color: #f8f9fa;
    padding: 2rem;
}

.navbar-brand {
    font-weight: bold;
}

footer {
    margin-top: 2rem;
    padding: 1rem 0;
}
.must, .should, .could, .would{
    padding: 4px 10px;
    border-radius: 15px;
    display: block;
    width: 70px;
    text-align: center;
    font-size: 14px;
  }
  .must{
    background-color:  #cbf8da;
  }
  .should{
    background-color:  #ffdcea;
  }
  .could{
    background-color:  #cde7fa;
  }
  .would{
    background-color:  #ffe7c2;
  }
  .modal {
    z-index: 99999;
  }
  #tableHeading{
    float: left;
    color: #009579;
    text-shadow: 1px 2px 2px #d7f6f0;
  }
  #btnAddItem{
    text-decoration:none;
    background: #009579;
    color:#ffffff;
    padding:8px;
    border-radius:5px;
    text-align:right;
    float:right;
    border: none;
    margin-right: 2px;
  }

  .table-responsive{
    overflow-x: auto;
  }

  .moscow-custom-tooltip {
    /* font-family: "Segoe UI", Arial, sans-serif; */
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #f8f9fa;
  }
  .border-none {
    border: none;
  }
  .additional-comment {
    min-height: 12rem !important;
  }
  .selected-row{
    background-color: #d1f7e0 !important;
  }
  .selected-row .sorting_1{
    background-color: #d1f7e0 !important;
  }

.tender-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Card styling */
.tender-dashboard .card {
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tender-dashboard .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Different card colors */
.card-blue { background: linear-gradient(135deg, #4e73df, #224abe); }
.card-red { background: linear-gradient(135deg, #e74a3b, #c0392b); }
.card-green { background: linear-gradient(135deg, #1cc88a, #13855c); }
.card-yellow { background: linear-gradient(135deg, #f6c23e, #dda20a); }

/* Text styling */
.tender-dashboard .card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
}

.tender-dashboard .card .count {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}