body {
    background-image: url('../../public/images/background-color.png');
    background-repeat: repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
      background-color: green !important; /* white background */
}

/* navi */
/* Navbar Main */
.navbar {
    background-color: #ffffff !important; /* white background */
    border-bottom: 3px solid #FFD700; /* gold border */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Navbar Brand */
.navbar-brand {
    font-weight: bold;
    color: #FF0000 !important; /* red */
    font-size: 24px;
}

/* Navbar Brand Hover */
.navbar-brand:hover {
    color: #228B22 !important; /* green */
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #228B22 !important; /* green */
    font-weight: 600;
    margin-right: 10px;
    transition: 0.3s;
}

/* Navbar Links Hover */
.navbar-nav .nav-link:hover {
    color: #FF0000 !important; /* red on hover */
}

/* Logout button style */
.navbar-nav form .btn.nav-link {
    background: transparent;
    border: none;
    color: #228B22;
    font-weight: 600;
    cursor: pointer;
}

.navbar-nav form .btn.nav-link:hover {
    color: #FF0000;
}

/* navi end */

.color-green{

    background-color: brown !important;
    color:#fff !important;
}

.filerarea{
    background-color: green;
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;


}



.card-profile {
    background: #fff;
    border: 2px solid #FFD700; /* Gold border */
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s all ease-in-out;
}
.card-profile:hover {
    box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
}

.card-profile label {
    font-weight: bold;
    color: #FF0000; /* Red labels */
    margin-bottom: 5px;
}

.card-profile small, 
.card-profile em {
    color: #008000; /* Green text */
}

.card-profile strong {
    color: #008000; /* Green strong text */
}

.card-profile .btn-warning {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #000;
}
.card-profile .btn-warning:hover {
    background-color: #FFC300;
    border-color: #FFC300;
    color: #000;
}

.card-profile .btn-danger {
    background-color: #FF0000;
    border-color: #FF0000;
}
.card-profile .btn-danger:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}



/* //proifle */

/* Container */
.container-box {
    background: linear-gradient(to bottom right, #FFD700, #FF0000, #008000);
    padding: 40px 20px;
    border-radius: 15px;
    min-height: 100vh;
}

/* Heading */
.page-heading {
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Filter Form */
.filter-form select,
.filter-form input[type="number"],
.filter-form .filter-btn {
    border: 2px solid #FFD700;
    border-radius: 10px;
    background: #ffffff;
    color: #008000;
    transition: 0.3s;
}

.filter-form select:focus,
.filter-form input[type="number"]:focus {
    border-color: #FF0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.filter-form .filter-btn {
    background: linear-gradient(to right, #FF0000, #FFD700);
    color: white;
    font-weight: bold;
}

.filter-form .filter-btn:hover {
    background: linear-gradient(to right, #008000, #FF0000);
}

/* Profile Card */
.profile-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Profile Details */
.profile-detail {
    font-size: 15px;
    margin-bottom: 8px;
    color: #444;
}

.profile-label {
    font-weight: bold;
    color: #FF0000;
}

/* View Button */
.profile-btn {
    background: linear-gradient(to right, #008000, #FFD700);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 12px;
    transition: 0.3s;
}

.profile-btn:hover {
    background: linear-gradient(to right, #FF0000, #008000);
}

/* Status Badges */
.badge-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

.badge-single {
    background-color: #28a745; /* Green */
}

.badge-married {
    background-color: #ffc107; /* Gold */
}

.badge-divorced {
    background-color: #dc3545; /* Red */
}

.badge-widowed {
    background-color: #6c757d; /* Grey */
}

/* Pagination */
.pagination .page-link {
    color: #008000;
    border: 1px solid #FFD700;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(to right, #FF0000, #FFD700);
    color: white;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-card {
        margin-bottom: 20px;
    }
}

/* profile full */



/* footer start */
/* Footer Main */
/* 1) Theme background (gradient red → gold → green) */
.theme-bg {
    margin-top: 20px;
    background-color: #ffffff !important; /* white background */
    border-top: 3px solid #FFD700; /* gold border */
    box-shadow: 1px -5px 9px rgba(0, 0, 0, 0.1);
    color: #228B22 !important; /* red */

  }
  .theme-bg p{
    color: #228B22
    }

  /* 2) White text on theme background */
  .theme-text {
   
    color: #228B22 !important; /* red */
    
  }
  
  /* 3) Links & icons on theme background */
  .theme-link {
    text-decoration: none;
    color: #228B22;
    transition: color 0.3s, transform 0.3s;
  }
  .theme-link:hover {
    color:#FF0000
    transform: scale(1.1);
  }
  
  /* 4) Divider line in white */
  .theme-divider {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  
  /* 5) Footer Padding */
  .footer-padding {
    padding-top: 50px;
    padding-bottom: 30px;
  }
/* footer end */

/* DASHBORD */
.card-profile {
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    background-color: #fff;
  }

  .card-profile .row {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button Styles */
  .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
  }

  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
  }

  .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
  }

  .btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
  }

  .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
  }

  .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
  }

  /* Add shadow effect to buttons */
  .shadow-sm {
    box-shadow: 1px 5px 9px rgba(0, 0, 0, 0.1);
  }

  /* Customize the font weight for the labels */
  .fw-bold {
    font-weight: bold;
  }

  /* Card borders and margin styles */
  .card-profile {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
/* ENDBARD */





/* Dashboard heading */
 /* Themed dashboard box */
 .dashboard-box {
    /* max-width: 900px; */
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    /* tri-color border accent */
    border-left: 6px solid #FF0000;   /* red */
    border-top: 6px solid #FFD700;    /* gold */
    border-right: 6px solid #008000;  /* green */
  }

  /* Welcome header */
  .dashboard-header {
    color: #FF0000; /* red */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  }

  /* “Post New Profile” button */
  .profile-btn {
    background: linear-gradient(90deg, #FF0000, #FFD700, #008000);
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  /* Section title */
  .section-title {
    display: inline-block;
    font-size: 1.5rem;
    color: #008000; /* green */
    margin-top: 2rem;
    border-bottom: 2px solid #FFD700; /* gold underline */
    padding-bottom: 0.25rem;
  }

  .logo-image{


    width: 100px;
}