/*
=========================================================
  CSS File for [Project Name]
  Author: [Your Name]
  Description: [Brief Description of the Project]
=========================================================

  Table of Contents:
  0. Nav bar
  1. Base Elements
  2. Sidebar
  3. Layout
  4. Media Queries

=========================================================
*/
/* 0. NavBars */

@import url('https://fonts.googleapis.com/css2?family=Glegoo:wght@400;700&family=Kameron:wght@400..700&display=swap');


.navbar{
  background-color: #d6f381;

}
/* Styles for reusable UI components like buttons, cards, forms, etc. */
.navbar-brand {
  display: flex;
  align-items: center;
}

/* Center the brand and button vertically */
.navbar .navbar-toggler {
  margin-left: auto;
}

.custom-navbar h1 {
  font-size: 3rem;
  margin-left: 0.5rem;
}

.custom-navbar img {
  width: 30px;
  height: 30px;
}

.navbar img{
    width: 90px; 
    height: 90px; 
    
}
.nav-link img{
  width: 50px;
  height: auto;
}
.navbar-brand, .ml-auto {
  display: flex;
  
  align-items: center;
  }


/* 1. Base Elements */
/* Styles for base HTML elements like headings, paragraphs, lists, etc. */
body{
    background-color: #9DDE8B;
    font-family: 'Glegoo', serif;
}

.content-box {
    padding: 30px;
    margin-top: 30px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
}



.date{
    font-size: 80px;
}
  
/* 2. Sidebar */
/* Include your reset or normalize.css here */
.sidebar {
    width: 15%;
    height: 100vh;
    position: fixed;
    left: 5vw;
    top: 20vh;
    text-align: left;
}
.sidebar-nav a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
    font-size: 25px;
}

.sidebar-nav img{
   width: 43px;
}

/* 3. Layout */
/* Global styles for body, typography, links, etc. */


.basic-price {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-align: right;
  }
  .subscription-details {
    margin-top: 20px;
  }

  
  .subscription-details h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .subscription-details p {
    font-size: 16px;
  }
  .subscription-details .price {
    font-size: 16px;
    text-align: right;
    margin-top: 20px;
  }
  .subscription-details .divider {
    border-bottom: 1px solid #fff;
    margin-top: 20px;
  }
  .subscription-details .btn {
    margin-top: 20px;
  }

  .service-date h2 {
    font-size: 24px;
  }
  .service-date h1 {
    font-size: 40px;
    text-align: left;
  }

  .history-table {
    background-color: #f8f9fa;
  }
  .history-table th,
  .history-table td {
    background-color: white;
  }
  .payments-section {
    margin-top: 30px;
  }
  .payments-section h5 {
    font-size: 20px;
  }
  .payments-section p {
    font-size: 16px;
  }

  .Name{
    margin-top: 14px;
  }

/* 4. Media Queries */
/* Media queries for responsive design */
@media (max-width: 992px) {
    .sidebar {
      display: none;
    }
    .section-divider {
      display: none;
    }
    .col-lg-8 {
      width: 100% !important;
    }
    .Name{
      display: none;
    }
    .content-box h1{
      font-size: 2rem;
    }
    .row{
      margin-top: 50px;
    }
  }
  @media (min-width: 992px) {
    .navbar {
      display: none;
    }
    .Name {
      display: flex;
      justify-content: start;
      align-items: center;
      padding: 10px;
    }
    .Name img {
      width: 30px;
      height: 30px;
      margin-right: 10px;
    }
    .Name h1 {
      margin: 0;
    }
  }
    
  @media (max-width: 768px) {
    .navbar-brand h1 {
        font-size: 1.25rem;
    }
  }

  @media (max-width: 767px) {
  
    .navbar img{
      width: 50px; 
      height: 50px;
    }
    
  }