.elementor-1631 .elementor-element.elementor-element-6b9ab5e{margin-top:4%;margin-bottom:0%;padding:0% 0% 0% 0%;}.elementor-1631 .elementor-element.elementor-element-721614f{--spacer-size:600px;}/* Start custom CSS for html, class: .elementor-element-93bccb6 *//* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
  background-color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
}

.panel-title {
  text-align: center;
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

.interpreter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 10px;
}

.interpreter-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.interpreter-info {
  flex-grow: 1;
}

.interpreter-info h3 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.interpreter-info p {
  margin: 4px 0;
  font-size: 14px;
  color: #666;
}

.status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.status.disponible {
  background-color: #4caf50; /* green */
  color: #fff;
}

.status.busy {
  background-color: #f44336; /* red */
  color: #fff;
}

.status.offline {
  background-color: #9e9e9e; /* gray */
  color: #fff;
}

.join-button {
  background-color: #f0c674; /* gold */
  color: #1b1f23;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

.join-button:hover {
  background-color: #c7a144;
}/* End custom CSS */