.framework-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: #4a4a4a;
  color: white;
}

.modal-header {
  background: #0084ff;
  color: white;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}
.modal-xl {
  max-width: 80%; /* Increase the width of the modal */
}
.modal-body {
  padding: 2rem; /* Increase padding inside the modal body */
}

.card {
  transition: transform 0.2s;
  height: 100%;
}

.card:hover {
  transform: translateY(-2px);
}

.framework-logo {
  width: 90px;
  height: 90px;
  margin: 1rem auto;
}
.open-ide-btn {
  background: #1e2937;
  color: white;
  text-decoration: none;
  padding: 1rem;
  border-radius: 4px;
  display: block;
  text-align: center;
  transition: background-color 0.2s;
}

.open-ide-btn:hover {
  background: #2d3748;
  color: white;
}
/* Blur effect */
.main-content.blurred {
  filter: blur(5px); 
  transition: filter 0.3s ease; 
}



.modal-backdrop.show {
  backdrop-filter: blur(5px); 
  background-color: rgba(
    0,
    0,
    0,
    0.3
  ); 
}
.form-container {
  padding: 1rem; /* Adds padding inside the container */
  border: 1px solid #dee2e6; /* Light border */
  border-radius: 8px; /* Rounded corners */
  background-color: #f8f9fa; /* Light background */
}
.custom-select {
  background-color: #4a4a4a24;
  max-width: 20%;
  border-radius: 50px;
  border-color: black;
  margin-left: 15%;
}
@media (max-width: 767px) {
  .custom-select {
    max-width: 50%;
  }
}
.modal-body {
  max-height: calc(100vh - 200px); /* Adjust based on header/footer height */
  overflow-y: auto; /* Enable scrolling if the content exceeds max height */
}
.custom-btn{
  background-color: #1A303C; 
  border-color: #1A303C;
  color: #fff;
  font-size: 0.95rem; 
  padding: 0.45rem 1.2rem; 
  border-radius:15px; 
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  align-items: center;
 
}
.toolbar {
  padding: 8px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-bottom: none;
}

.toolbar select, .toolbar button {
  padding: 4px 8px;
  margin-right: 5px;
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 3px;
}

.content-area {
  border: 1px solid #dee2e6;
  padding: 15px;
  min-height: 200px;
}

