body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    padding: 20px;
    margin: 0;
}

.container {
    max-width: 800px;
    margin: auto;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input, button {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #00bcd4;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #0097a7;
}

 input[type="checkbox"] {
    margin-left: 10px;
} 


nav a {
    color: #00bcd4;
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}

header {
    background-color: #f0f0f0;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.responsive-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #00bcd4;
    color: white;
}





.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* Simple styling for the modal and table */
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0, 0, 0);
            background-color: rgba(0, 0, 0, 0.4);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 50%;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            padding: 8px;
            text-align: left;
            border-bottom: 1px solid #00bcd4;
        }

        th {
            background-color: #00bcd4;;
        }

        button {
            cursor: pointer;
            margin-right: 5px;
        }




        .modal-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .edit-user-modal {
            background-color: white;
            padding: 20px;
            width: 30%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .edit-user-modal input[type="text"],
        .edit-user-modal input[type="date"],
        .edit-user-modal input[type="checkbox"] {
            width: calc(100% - 20px); /* Full width minus padding */
            padding: 10px;
            margin: 5px 0;
            box-sizing: border-box;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        
        .edit-user-modal button {
            padding: 10px 20px;
            background-color:#00bcd4; /* Your theme color */
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 4px;
        }
        
        .edit-user-modal button:hover {
            background-color: #00bcd4;
        }
        
        .edit-user-modal h3 {
            color: #333;
            text-align: center;
        }
        

        .notification-entry {
            background-color: white;
            padding: 15px;
            margin: 10px auto; /* Centers the card and adds spacing */
            width: 80%; /* Medium size, adjust as needed */
            max-width: 400px; /* Maximum width for smaller screens */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .notification-content {
            font-size: 0.9rem;
        }
        
        .notification-actions {
            display: flex;
            justify-content: space-between;
        }
        
        .notification-time {
            font-size: 0.8rem;
            color: #666;
            text-align: right;
        }
        
        .notification-entry {
            background-color: white;
            padding: 10px;
            margin: 5px; /* Smaller margin for closer cards */
            width: 30%; /* Smaller width */
            max-width: 300px; /* Adjusted maximum width */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            display: inline-block; /* Align cards side by side */
            vertical-align: top;
        }
        
        .notification-content {
            font-size: 0.85rem; /* Adjust font size for smaller card */
        }
        
        .notification-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 10px; /* Space from content to buttons */
        }
        
        .notification-time, .notification-phone {
            font-size: 0.75rem;
            color: #666;
            text-align: right;
        }
        

        .notification-entry {
            background-color: white;
            padding: 10px;
            margin: 5px; /* Smaller margin for closer cards */
            width: 30%; /* Adjust width to fit three cards per row */
            max-width: 300px; /* Adjusted maximum width */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            display: inline-block; /* Align cards side by side */
            vertical-align: top;
            box-sizing: border-box;
        }
        
        .notification-content {
            font-size: 0.85rem;
            color: #333; /* Default text color */
        }
        
        .notification-content label {
            color: #00bcd4; /* Cyan color for labels */
            font-weight: bold;
        }
        
        .notification-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
        
        .notification-time, .notification-phone {
            font-size: 0.75rem;
            text-align: right;
            color: #666;
        }
        
        /* Add responsive layout for smaller screens */
        @media (max-width: 960px) {
            .notification-entry {
                width: 100%; /* Stack cards vertically on smaller screens */
                max-width: none;
            }
        }

        
        .modal-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .edit-user-modal {
            background: white;
            padding: 20px;
            border-radius: 5px;
            position: relative;
            width: 90%;
            max-width: 500px;
        }
        
        .close {
            font-size: 24px;
            color: #000;
        }
        
        .modal-content {
            position: relative;
        }
        
        