@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset & Base */
body {
   
    background-color: #1d2869 !important;
    color: #333;
    margin: 0;
    padding: 20px;
    
    font-family: "Inter", sans-serif;
   font-style: normal;
}

.text-center {
    text-align: center !important;
    color: #fff;
}

/* Form Styling */
form {
    background-color: #fff;
    padding: 20px;
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

form input[type="text"],
form input[type="url"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

form button {
    padding: 10px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

th, td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #f1f1f1;
    font-weight: 600;
}

a {
    color: #1a4499 !important;
    text-decoration: none !important;
    font-size: 19px;
}

a:hover {
    text-decoration: underline;
}

/* Pagination Styling */
div.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

div.pagination a {
    padding: 8px 14px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

div.pagination a:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

div.pagination a[style*="font-weight:bold"] {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}


.links{
    font-size: 21px;
    color: #FFC107 !important;
    font-weight: 500;
}

.totalbookmark{
    font-size: 18px;
    color: #FFC107 !important;
    font-weight: 500;
}

hr{
   color: #fff !important;
}

.footer{
    background-color: #fff;
    padding: 12px;
}
.blinking-title {
      font-size: 2rem;
      font-weight: bold;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }