body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.container {
    /* text-align: center; */
    padding: 20px;
}

.cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    width: 300px;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 5px;    
}

.title {
    font-size: 26px;
    font-weight: 600;
    margin: 5px 0;
    color: #2c3e50;
}

.login {
    display: block;
    color: #ffffff; /* White text color */
    background-color: #3498db; /* Light blue for the button */
    padding: 12px 24px;
    margin: 20px auto;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    width: 50%;
    transition: background-color 0.3s;
    cursor: pointer;
}

.login:hover {
    background-color: #2980b9;
}

.header {
    margin-top: 30px;
    margin-bottom: 90px;
    text-align: center;
}

.company-name {
    font-size: 30px;
    font-weight: 600;
    color: #2c3e50; /* Darker shade for better contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 65px;
}

.company-name span {
    margin: 0 20px; /* Add spacing between text and logo */
}

.logo-container {
    margin-bottom: 30px;
}

.company-logo {
    width: 100px;
    height: auto;
}


.home-btn {
    background-color: #007BFF;
    border: none;
    font-size: 20px;
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    margin-top: 40px;
    margin-bottom: 0px;
}

.home-page-link,
.lap-page-link {
    color: rgb(78, 78, 78); 
    font-size: 17px; 
    text-align: center; 
}

#statsticts-lable {
    color: rgb(78, 78, 78); 
    font-size: 35px; 
    text-align: center; 
    margin-top: 19px; 
    margin-bottom: 30px;
}



.new-clinic-link {
    text-decoration: none; 
    color: green;
}

#back-to-admin {
    text-decoration: none;
    color: blue; 
    font-size: 10px; 
    display: block; 
    text-align: center; 
    margin: 20px;
}

/* Adjust the logo size for different screen sizes */
@media (max-width: 768px) {
    .company-logo {
        width: 40px;
    }

    .company-name {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .company-logo {
        width: 30px;
    }

    .company-name {
        font-size: 20px;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        width: 80%;
        margin: 0 auto;
    }

    .img {
        height: 200px; /* Reduce image height for smaller screens */
    }

    .title {
        font-size: 24px;
    }

    .login {
        width: 80%;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .cards {
        gap: 15px;
    }

    .card {
        width: 90%;
    }

    .img {
        height: 180px; /* Further reduce image height for mobile screens */
    }

    .title {
        font-size: 22px;
    }

    .login {
        width: 90%;
        padding: 8px 16px;
    }
}

/* Login Page Styles */


.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 80px;
}

.login-box {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #2c3e50; /* Darker shade for better contrast */
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50; /* Darker shade for better contrast */
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

input:focus {
    border-color: #3498db; /* Change border color to blue when focused */
    outline: none;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #3498db; /* Light blue for the button */
    color: #ffffff; /* White text color */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .login-box {
        padding: 30px 15px;
    }

    h2 {
        font-size: 22px;
    }

    input {
        padding: 10px;
    }

    .login-button {
        padding: 10px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 20px 10px;
    }

    h2 {
        font-size: 20px;
    }

    input {
        padding: 8px;
    }

    .login-button {
        padding: 8px;
        font-size: 14px;
    }
}

.pt-info-row {
    border:2px yellow solid;
    border-radius: 2px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.admin-page-container {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}