@media print {
	.no-print{
		display:none;
	}
	.table {
		width:100% ! important;
	}
}

@font-face {
	font-family: bamini;
	font-weight: bold;
	src: url('baamini.TTF');
}
.tamil {
	font-family: bamini;
}
@font-face {
	font-family: sego;
	font-weight: bold;
	src: url('SEGOEUIL.TTF');
}
.sego {
	font-family: bamini;
}
.tamil {
	font-family: bamini;
}
@font-face {
	font-family: valluvan;
	font-weight: bold;
	src: url('valluvan.TTF');
}
.vtamil {
	font-family: valluvan;
}


.title{
	margin:0px;
	text-align:center;
	line-height:22px;
}
.subtitle{
	margin:0px;
	text-align:center;
	font-size: 12px;
	line-height:22px;
}


select:focus	  {
 background-color:cyan
}







        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(135deg, #f4f4f4, #e2e2e2);
            color: #333;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        .container {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 30px;
            width: 400px;
            margin: 30px auto;
            animation: fadeIn 1s ease-in-out;
        }
        button {
            background-color: #007BFF;
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 10px 20px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        button:hover {
            background-color: #0056b3;
            transform: scale(1.05);
        }
        .options {
            display: none;
            margin-top: 20px;
        }
        label {
            display: block;
            margin: 15px 0;
            font-size: 18px;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        label:hover {
            color: #007BFF;
            transform: translateX(10px);
        }
        input[type="radio"] {
            margin-right: 10px;
        }
        .options button {
            background-color: #28a745;
            margin-top: 20px;
        }
        .options button:hover {
            background-color: #218838;
            transform: scale(1.05);
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #333;
    text-align: right;
    padding: 10px;
    border-top: 1px solid #000;
    background-color: #f4f4f4;

}
a {
    text-decoration: none;
    color: blue;
}

        .header h1::after {
            content: '';
            color: #007BFF;
            margin-left: 10px;
            animation: spin 2s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


/*heading something blinking starts here*/
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.animate__pulse {
  animation-name: pulse;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.animate__infinite {
  animation-iteration-count: infinite;
}
/*heading something blinking ends here*/