.trainocate-training-slots-wrapper {
    margin-top: 40px;
    font-family: "Inter", Helvetica, Arial, sans-serif;
}

.trainocate-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

/* Universal Filter Style (Date + Selects) */
.tr-filter,
.tr-date-picker {
    background-color: transparent !important;
    /* Ghost style from inspection */
    border: 2px solid #FA4515 !important;
    /* Live page color */
    color: #FA4515 !important;
    font-weight: 500;
    padding: 11px 35px 11px 23px;
    /* Inspection padding (Right extra for arrow) */
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.2;
    min-width: 140px;
    cursor: pointer;

    /* Custom Arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23FA4515' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
}

.tr-filter:focus,
.tr-date-picker:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(250, 69, 21, 0.2);
}

.tr-date-picker::placeholder {
    color: #FA4515;
    opacity: 1;
}

/* Grid Layout */
.trainocate-slots-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .trainocate-slots-list {
        grid-template-columns: 1fr;
    }
}

/* Card Style */
.tr-slot-card {
    border: 5px solid #333333;
    /* Thick Border */
    border-radius: 10px;
    /* 10px Radius */
    padding: 30px 50px 15px;
    /* Exact Padding */
    background: #fff;
    box-shadow: none;
    display: flex;
    flex-direction: column;
	position: relative;
}

/* Card Header */
.tr-slot-header {
    margin-bottom: 20px;
}

.tr-date-range {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

/* Card Body - Grid Layout */
.tr-slot-body {
    margin-bottom: 20px;
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 items per line */
    gap: 10px 30px;
    /* Row Gap 10px, Col Gap 30px */
}

.tr-info-row {
    display: flex;
    gap: 5px;
    /* Space between Label and Value */
    align-items: center;
    margin-bottom: 0;
    /* Handled by grid gap */
    font-size: 16px;
    font-weight: 500;
    color: #000;
    border: none;
    padding: 0;
}

/* Align Odd (1st, 3rd) to Left */
.tr-info-row:nth-child(odd) {
    justify-content: flex-start;
}

/* Align Even (2nd, 4th) to Right */
.tr-info-row:nth-child(even) {
    justify-content: flex-end;
    text-align: right;
}

.tr-label {
    color: #000;
    font-weight: 500;
}

.tr-value {
    font-weight: 500;
    color: #000;
}

/* Footer & Button */
.tr-slot-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-bottom: 15px;
}

.tr-price {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.tr-quote-btn {
    background-color: #FA4515 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 500 !important;
    border-radius: 130px !important;
    /* Pill shape */
    padding: 13px 29px !important;
    /* Exact Padding */
    font-size: 14px !important;
    text-transform: capitalize !important;
    margin-left: auto;
    line-height: 1 !important;
}

.tr-quote-btn:hover {
    background-color: #d13a10 !important;
}

/* Exam Field Specifics */
.tr-exam-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Right align content */
    text-align: right;
}

.tr-exam-check {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    cursor: pointer;
}

.tr-exam-check input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

/* No Results */
.tr-no-results {
    grid-column: 1 / -1;
    font-size: 18px;
    color: #666;
}

/* Clear Filter Button */
.tr-clear-btn {
    text-decoration: none;
    color: #FA4515;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.tr-clear-btn:hover {
    color: #FA4515;
    text-decoration: underline;
}

@media (max-width: 600px) {
	.tr-slot-card{
	    padding-left: 25px;
	    padding-right: 25px;
	}
	.tr-slot-body{
	    display: flex;
	    flex-direction: column;
	}
	.tr-info-row:nth-child(2n){
	    text-align: left;
	    justify-content: start;
	}
	.tr-price {
	    display: flex;
	    flex-direction: column;
	    gap: 8px;
	}
}
