body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Changed to column layout */
    justify-content: flex-start;
    align-items: center;
    background-image: url('pharmacybg.png');
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
    font-family: Arial, sans-serif;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(144, 222, 230, 0.308); 
    z-index: -1; 
}

.card {
    background: #fff;
    padding: 4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    max-width: 650px;
    width: 100%;
    margin: 120px auto 0;
    position: relative;
    font-family: 'Ramabhadra', sans-serif;
    text-align: center;
}

.pharmacy-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: auto;
    background: #fff;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.number {
    font-size: 6.5rem;
    margin: 0 0 0;
    color: #408C67;
    font-weight: bold;
}

.name {
    font-size: 1.7rem;
    color: #222;
    margin-bottom: 3rem;
	font-weight: bold;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    padding: 0.8rem 0.8rem;
    background: linear-gradient(135deg, #408C67, #2e5e49);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 90px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 0 0 transparent;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-20deg);
    transition: left 0.4s ease;
}

.button:hover::before {
    left: 200%;
}

.button:hover {
    background: linear-gradient(135deg, #326d50, #244e3b);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.button:active {
    transform: translateY(0);
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
}

.button.remove {
    padding: 0.8rem 0.9rem;
    background: linear-gradient(135deg, #d33c3c, #a92f2f);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.button.remove::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-20deg);
    transition: left 0.4s ease;
}

.button.remove:hover::before {
    left: 200%;
}

.button.remove:hover {
    background: linear-gradient(135deg, #b42c2c, #8f2222);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.button.remove:active {
    transform: translateY(0);
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.25);
}

.navbar {
    background-color: #8d8d8d; 
    opacity: 0.6;
    padding: 0rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    height: 180px;
    width: 100%;
    overflow: hidden;
  }
  .navbar img {
    width: 100%;
    height: 100%;
  }
  .navbar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Set a maximum width for the navbar */
    margin: auto; /* Center the navbar */
    position: relative;
    top: 50%;
    transform: translate(0%,-60%);
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333; /* Dark gray or black color for brand */
    font-weight: 500; /* Semi-bold font-weight */
    margin-left: -300px;
  }
  
  .navbar-brand img {
    margin-right: 10px;
  }
  
  .navbar-brand span {
    color: #ffffff;
    text-align: left;
    font-family: "DaysOne-Regular", sans-serif;
    font-size: 40px;
    font-weight: 700;
    position: relative;
  }
  
  .navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .nav-item {
    margin-left: 20px;
    
  }
  
  .nav-link {
    text-decoration: none;
    color: #ffffff;
    text-align: left;
    font-family: "Ramabhadra-Regular", sans-serif;
    font-size: 24px;
    font-weight: 400;
    position: relative;
    top: 50%;
    width: 83px;
    padding: 0.5rem 1rem;
    border-radius: 5px; 
    transition: background-color 0.3s, color 0.3s;
  }
  
  .nav-link:hover, .nav-link.active {
    background-color: #007bff;
    color: #fff; 
  }