﻿
@font-face {
    font-family: 'algerian regular';
    src: url('../../font/algerian regular.ttf') format('truetype');
}
body {
    margin:1rem;
}
.label {
    color: black;
    font-weight: bold;
    font-size:0.8rem;
    text-align:left
}

.input {
    width: 80%;
    height:1.5rem;
    font-size: small;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

    .input:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

.btn {
    justify-content:center;
    height:1.7rem;
    padding: 0.01rem 1.2rem;
    font-size: 1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #0056b3;
    }
/* Styling for the GridView with class gvcss */
.gvcss {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3%;
    text-align: center;
}

    .gvcss th, .gvcss td {
        border: 1px solid #ddd;
        padding: 8px;
       
        font-size: small
    }

    .gvcss th {
        background-color: #f2f2f2;
        
    }

    .gvcss tr:hover {
        background-color: #f5f5f5;
    }

