/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Apr 12, 2023, 12:27:05 PM
    Author     : rahul.errabelly
*/
@media only screen and (max-width: 768px) {
    div.card-container {
        flex-direction: column;
    }
    .card-center{
        width:200px;
    }

}

.welcome {
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto;
    margin-top: 20px;
}

.card-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 150px;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.card-left {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-left img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-right {
    width: 60%;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
}

.card-right h2 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 5px;
}

.card-right p {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
}

.centered-card {
    margin: 0 auto;
}

.card-body {
    display: flex;
}

.card-image {
    flex-basis: 40%;
    padding: 10px;
}

.card-image img {
    max-width: 100%;
    height: auto;
}

.card-text {
    flex-basis: 60%;
    padding: 10px;
}

 

.quick-links-card {
    width: 300px;
    margin: 20px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.quick-links-card h2 {
    font-size: 24px;
    margin-top: -20PX;
    margin-bottom: 20px;
    text-align: center;
}

.quick-links-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-card li {
    font-size: 18px;
    margin-bottom: 10px;
}

.quick-links-card li a {
    display: block;
    padding: 10px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.quick-links-card li a:hover {
    background-color: #ddd;
    color: #fff;
}
.quick-links-card ul li a i {
    margin-right: 10px;
    font-size: 24px;
}

.quick-links-card ul li a .link-text {
    display: inline-block;
    margin-left: 10px;
    font-size: 18px;
    font-weight: 600;
    padding-top: 2px;
}

