@font-face {
  font-family: 'Ruhul Amin';
  src: url('ruhul_amin-webfont.woff2') format('woff2'),
       url('ruhul_amin-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
 margin: 0; /* Reset body margin */
 padding: 0; /* Reset body padding */
}

body {
 margin: 0; /* Reset body margin */
 padding: 0; /* Reset body padding */
}

header {
 margin-top: 0; /* Ensure no top margin */
 padding-top: 0; /* Ensure no top padding */
}


body, p, h1, h2, h2, h4, td, b, i, u, strong, div, center, button {
  font-family: 'Ruhul Amin', sans-serif; /* Added fallback font */
}

#content {
            margin-top: 0px;
            margin-bottom: 0px;
            margin-right: 40px;
            margin-left: 40px;
        }

.record {
  font-family: 'Ruhul Amin', sans-serif; /* Added fallback font */
}

.arabic {
  font-family: 'Ruhul Amin', sans-serif; /* Added fallback font */
  font-size: 20px;
  line-height: 130%;
  text-align: justify;
  direction: rtl;
  color: #000000;
  background-color: #ffffff;
}




.rb {
    display: inline-block; /* Ensures the padding and border only apply to the text */
    padding: 10px 20px; /* Adjust the padding as needed */
    border: 4px solid #000; /* Border width and color */
    border-radius: 30px; /* Adjust the radius to make the corners round */
    font-size: 20px; /* Adjust the font size as needed */
    width: 60%; /* Set a fixed width */
    box-sizing: border-box; /* Include padding and border in the element's total width */
    text-align: center; /* Center the text */
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition for hover effect */
        }

.rb:hover {
            background-color: aliceblue; /* Change background color on hover */
            color: blue;
            border-color: #ff0000; /* Change border color on hover */
            transform: scale(1.2);
        }
		
		
.sb {
display: inline-block; /* Ensures the padding and border only apply to the text */
padding: 4px 8px; /* Adjust the padding as needed */
border: 2px solid #000; /* Border width and color */
border-radius: 10px; /* Adjust the radius to make the corners round */
font-size: 20px; /* Adjust the font size as needed */
width: auto; /* Set a fixed width */
height: 90%; /* Set a fixed width */
box-sizing: border-box; /* Include padding and border in the element's total width */
text-align: center; /* Center the text */
transition: background-color 0.3s, border-color 0.3s; /* Smooth transition for hover effect */
background-color: white;
}

.sb:hover {
            background-color: green; /* Change background color on hover */
            color: white;
            border-color: #ff0000; /* Change border color on hover */
        }

*{
  font-family: 'Ruhul Amin', sans-serif; /* Added fallback font */
}


  /* Navbar styling */
  .navbar {
    background-color: #333;
    overflow: hidden;
  }

  .navbar a {
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 4px 6px;
    text-decoration: none;
  }

  /* Hover effect for navbar links */
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #ddd;
    color: black;
  }

  /* Dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
  }

  /* Dropdown button styling */
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 4px 6px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }

  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #ddd;
  }

  /* Show the dropdown menu when the user hovers over the dropdown button */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* FontAwesome caret-down styling */
  .fa-caret-down {
    margin-left: 5px;
  }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px;
}

.left-items {
  display: flex;
  gap: 2px; /* Adds space between the left-aligned items */
}

.right-item {
  text-align: right;
}


/* Style for the search input */
.keyword {
    border-radius: 20px;
    padding: 10px;
    border: 2px solid #007bff;
    width: 80%;
    max-width: 400px;
    box-sizing: border-box;
}

/* Style for the search button */
.search-btn {
    border-radius: 20px;
    padding: 10px 20px;
    border: 2px solid #007bff;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

/* Add a hover effect for the button */
.search-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Optional: Add focus effect for the input */
.keyword:focus {
    outline: none;
    border-color: #0056b3;
}
