input::placeholder {
  color: #a0aec0;
  font-size: 0.95rem;
}
.funeral-care-logo{
width: 22%;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f6ff;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    padding-bottom: 64px;
}

.sidebar {
    width: 250px;
    height: 100vh;
    background: #000000;
    color: #fff;
    position: fixed;
    left: 0;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.sidebar a:hover {
    background: #768cfe;
}

.content {
    margin-left: 270px;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    min-height: calc(100vh - 64px);
}

.header {
    background: #768cfe;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.activity-table {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 270px;
    right: 0;
    height: 64px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    z-index: 900;
    margin-bottom: 10px;
    margin-right: 15px;
}

.hamburger-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    justify-content: flex-end;
    z-index: 1001;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

/* Large screens */
@media (min-width: 1024px) {
    .sidebar.collapsed {
        width: 70px;
    }
    .sidebar.collapsed h2,
    .sidebar.collapsed a span {
        display: none;
    }
    .sidebar.collapsed .hamburger-btn {
        justify-content: center;
    }
    .content.collapsed-sidebar {
        margin-left: 90px;
    }
    .footer.collapsed-sidebar-footer {
        left: 90px;
    }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 1023px) {
    .sidebar {
        width: 70px;
    }
    .sidebar.expanded {
        width: 250px;
    }
    .sidebar h2,
    .sidebar a span {
        display: none;
    }
    .sidebar.expanded h2,
    .sidebar.expanded a span {
        display: inline;
    }
    .sidebar a {
        justify-content: center;
    }
    .sidebar.expanded a {
        justify-content: flex-start;
    }
    .content {
        margin-left: 90px;
    }
    .content.expanded-sidebar {
        margin-left: 270px;
    }
    .footer {
        left: 90px;
    }
    .footer.expanded-sidebar-footer {
        left: 270px;
    }
}

/* Small screens */
@media (max-width: 767px) {
    .sidebar {
        left: -250px;
    }
    .sidebar.mobile-open {
        left: 0;
    }
    .content {
        margin-left: 0 !important;
    }
    .footer {
        left: 0;
        margin-left: 15px;
    }
    .hamburger-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        color: #000;
    }
    .overlay.active {
        display: block;
    }
}

/* When sidebar is collapsed */
.sidebar-collapsed .sidebar-text {
  display: none;
}

.sidebar-collapsed .sidebar-dropdown {
  display: none !important; /* Hide dropdown when collapsed */
}