 /*
 *= require_self 
 *= require_tree ./base
 *= require_tree ./components
 *= require_tree ./layouts
 *= require_tree ./pages
 *= require_tree ./utilities

 */

/* Global styles can go here */

/* Applying Roboto font globally */

/*
.btn-like-submit {
  appearance: auto;
  user-select: none;
  text-align: center;
  cursor: default;
  box-sizing: border-box;
  background-color: buttonface;
  color: buttontext;
  white-space: pre;
  padding-block: 1px;
  padding-inline: 6px;
  border-width: 2px;
  border-style: outset;
  border-color: buttonborder;
  border-image: initial;
  text-decoration: none;
  display: inline-block;
}

*/

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px; /* You can adjust this value to make text slightly bigger or smaller */
  line-height: 1.6; /* For better readability */
  color: #333;
  background-color: #f8f9fa; 
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2rem; /* or 20px */
  padding-right: 2rem; /* optional, for symmetry */

}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
}

label, .form-label, .field label {
  font-size: 1.1rem; /* Slightly larger labels for better readability */
}

textarea, .form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

button, .btn {
  font-family: 'Roboto', sans-serif;
}

.agents-grid {
  display: grid;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* background-color: yellow; Test color */
}

@media (min-width: 768px) {
  .agents-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (min-width: 1024px) {
  .agents-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

.interactions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
    background-color: gray; /* Test color */
  }

.interaction-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }



/*# sourceMappingURL=application-ceb48ecd.css.map*/