﻿.number-plates {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.callup-board-table{
    font-size:16px;
    font-weight:bolder;
}
.number-plate {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 35px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.number-plate .code,
.number-plate .numbers {
    font-size:16px;
    letter-spacing: 2px;
}

.number-plate .code {
    margin: 0 10px;
}

.number-plate .numbers {
    margin: 0 5px;
}
.row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.textarea-wrapper {
    flex: 40%;
    margin-right: 10px;
}

.sample-div-wrapper {
    flex: 40%;
    align-self: flex-start;
    margin-left: 80px;
    border: none;
}

.button-wrapper {
    flex: 1;
    max-width: 20%;
    margin:10px;
}

#driver_assigned_block_editor {
    width: 100%;
    height: 100px; /* Adjust height as needed */
}

.sample_message {
    padding: 15px;
    margin-left:30px;
    
}
.sms-tmplate-editor-container {
    margin-top: 20px
}
.generate-button {
    width: 100%;
}

.sms-template-modify-button{
    margin-bottom:10px;
}

.sms-template-editor{
    min-height:150px;
}

.table-responsive {
    overflow-x: auto;
}

@media (max-width: 768px) {
    .table-responsive {
        width: 100%;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

    .responsive-table {
        width: 100%;
        margin-bottom: 0;
        color: #333;
        border-collapse: collapse;
        white-space: nowrap;
    }

        .responsive-table tr {
            border-top: 1px solid #ccc;
        }

        .responsive-table th,
        .responsive-table td {
            padding: 8px;
            line-height: 1.42857143;
            vertical-align: top;
            border-top: none;
        }

        .responsive-table th {
            font-weight: bold;
        }
}

.input-container {
    
    display: flex;
    align-items: center;
}

.input-field {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex-grow: 1;
    margin-right: 10px;
}


