/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/* app/assets/stylesheets/application.css */
.container {
    display: flex;
    min-height: 100vh;
  }
  
  .sidebar-container {
    width: 250px;             /* Adjust as needed */
    background-color: #f8f9fa;  /* Light gray background */
    padding: 20px;
    border-right: 1px solid #ddd;
  }
  
  .main-content {
    flex: 1;
    padding: 20px;
  }

  body {
    background-color: #f3f4f6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.sidebar {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    background-color: #1e40af;
    color: white;
    transition: all 0.3s;
}
.main-content {
    margin-left: 240px;
    padding: 20px;
    transition: all 0.3s;
}
@media (max-width: 768px) {
    .sidebar {
        width: 80px;
    }
    .sidebar-text {
        display: none;
    }
    .main-content {
        margin-left: 80px;
    }
}
.status-badge {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
.status-new { background-color: #3b82f6; }
.status-answered { background-color: #10b981; }
.status-busy { background-color: #f59e0b; }
.status-closed { background-color: #ef4444; }
.status-not-used { background-color: #6b7280; }

.call-item:hover {
    background-color: #f9fafb;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

@media print {
    .sidebar {
        display: none;
    }
    .main-content {
        margin-left: 0;
    }
    .no-print {
        display: none;
    }
}

.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }
  
  .duration-200 {
    transition-duration: 200ms;
  }
  