.table1{
	background-color: #dee2e6;
    border-style: outset;
    border-color: black;
}
.texBoxStyle{
border-bottom-style: dashed;
    border-block-start: none;
    border: none;
    border-bottom: 2px dashed black;
    outline: none;
    /* width: 100%; */
    box-shadow: none;	
}

 body {
            font-family: Arial, sans-serif;
                overflow: scroll;
            
        }

        .table-container {
            width: 100%;
            overflow-x: auto; /* Horizontal scrolling for small screens */
/*             max-height: 300px; Adjust height as needed */
/*             overflow-y: auto; Vertical scrolling if content is large */
        }

        table {
            width: 100%;
            border-collapse: collapse;
/*            min-width: 600px;  Ensures table doesn’t shrink too much */
        }

        th, td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: left;
        }

        th {
            background-color: #f4f4f4;
        }

        /* Responsive Styling */
        @media (max-width: 600px) {
            th, td {
                font-size: 14px;
                padding: 8px;
            }
        }

        @media (max-width: 400px) {
            th, td {
                font-size: 12px;
                padding: 6px;
            }
        }
.card {
            transition: transform 0.3s;
        }
        .card:hover {
            transform: scale(1.05);
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
        }
        .instruction-box {
            background: #fff;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin-top: 20px;
        }
 footer {
	background: rgb(125,176,169);
background: linear-gradient(90deg, rgba(125,176,169,1) 0%, rgba(78,109,114,1) 31%, rgba(33,44,62,1) 100%);
	padding: 2px 10px;
	border-top: 5px solid #2a333c;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;

}
.btn1 {
        margin-left:10px;
        margin-right: 10px;
        margin-top:7px;
        float:right;
        margin-bottom:10px;
        padding: 7px; 
        border:none; 
        border-radius: 5px;
        }
.btn{
	 border-color: teal;
    background-color: teal;
}
.timerStyle{
	       background-color: #42494f;
    color: #e8ac6e;
    font-weight: 700;
    font-family: 'digital-clock-font';
    letter-spacing: 1px;
}