.mtc-container {
           /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            max-width: 1200px;
            margin: 0 auto;*/
	font-family: "Josefin Sans";
	max-width: 1200px;
            margin: 20px auto;
            padding: 0;
            box-sizing: border-box;
        }
        .mtc-card {
           /* border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
					transition: all 0.3s ease;*/
					background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
					box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.17);            
        }
        .mtc-card:hover {
           /* box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);*/
        }
        .mtc-input {
            transition: all 0.3s ease;
            border: 2px solid #e2e8f0;
        }
        .mtc-input:focus {
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
        }
        .mtc-btn {
            /*transition: all 0.3s ease;*/
					background-color: #1d4c4b;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 8px 16px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.2s;
        }
        .mtc-btn:hover {
					  background-color: #f1843e;
            /*transform: translateY(-1px);*/
        }
        .mtc-btn:active {
					background-color: #1d4c4b;
           /* transform: translateY(1px);*/
        }
        .mtc-swap-btn {
					margin-top: 30px;
					background-color: #1d4c4b;
            transition: transform 0.3s ease;
        }
        .mtc-swap-btn:hover {
					background-color: #f1843e;
            transform: rotate(180deg);
        }

.mtc-label-transition {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
  }
  .mtc-label-hidden {
    opacity: 0;
  }


        .mtc-time-chart {
            border-collapse: separate;
            border-spacing: 0;
            width: 100%;
        }
        .mtc-time-chart th, .mtc-time-chart td {
            padding: 0.75rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .mtc-time-chart tr:hover {
            background-color: #f8fafc;
        }
        .mtc-clock-display {
            font-variant-numeric: tabular-nums;
        }
        .mtc-table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        @media (max-width: 640px) {
            .mtc-flex-col-sm {
                flex-direction: column;
            }
            .mtc-w-full-sm {
                width: 100%;
            }
            .mtc-mb-4-sm {
                margin-bottom: 1rem;
            }
        }