﻿.saim-card-grid {
    border: none;
    background: transparent;
}

    .saim-card-grid .k-grid-header {
        background: transparent;
        border: none;
    }

        .saim-card-grid .k-grid-header th {
            border: none;
            background: transparent;
            font-weight: 600;
            color: #333;
            padding-bottom: 0.75rem;
        }

    .saim-card-grid .k-grid-content {
        overflow: auto;
    }

    .saim-card-grid .k-table {
        border-collapse: separate;
        border-spacing: 0 10px;
    }

    .saim-card-grid .k-table-tbody .k-table-row {
        background: #faf6f0;
        box-shadow: none;
    }

        .saim-card-grid .k-table-tbody .k-table-row td {
            border: none !important;
            background: transparent;
            padding: 0.85rem 1rem;
            vertical-align: middle;
        }

            .saim-card-grid .k-table-tbody .k-table-row td:first-child {
                border-radius: 10px 0 0 10px;
            }

            .saim-card-grid .k-table-tbody .k-table-row td:last-child {
                border-radius: 0 10px 10px 0;
            }

        .saim-card-grid .k-table-tbody .k-table-row:hover {
            background: #f3ede3;
        }

    .saim-card-grid .k-grid-pager {
        border: none;
        background: transparent;
        padding-top: 1rem;
    }

.grid-primary-text {
    color: #e8a317;
    font-weight: 600;
}

/* This is for the card on main page */
.square-card {
    width: 250px;
    height: 250px; /* use height instead of aspect-ratio to test */
    border: 2px solid #ccc;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .square-card:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,.3);
    }

/* This is for space between title and components */
.page-content {
    padding: 20px;
}

.page-container {
    padding: 20px;
}

/* Space below the page title */
.page-title {
    margin-bottom: 30px;
}

/* Space below the cards */
.card-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

/* Space below the Vehicle Grid title */
.section-title {
    margin-bottom: 20px;
}