:root{
    --primary-color: #75c465;
    --background-color: #ffd797;
    --text-color: #ffdffd;
    --secondary-text-color: #333333; 
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    font-weight: bolder;
}
.container{
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    color: var(--secondary-text-color);
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}
header{
    text-align: center;
    margin-bottom: 20px;
}
h1{
    color: var(--primary-color);

}
form{
    margin-bottom: 30px;
}
label{
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}
input[type="text"],input[type="number"],input[type="number"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-weight: bold;

}
button{
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: bolder;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover{
    background-color: var(--text-color);
    color: var(--primary-color);
   
}
.listings {
    margin-top: 20px;
    background-color:var(--primary-color);
    color: var(--text-color);
    padding: 30px; 
    box-sizing: border-box;
    border-radius: 8px;
    display: block; 
    font-weight: bolder;
    
    
}
.listing-veg{
    display: flex;
    justify-content: space-between;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    align-items: center;
}
.listing-details{
    flex-grow: 1;
}
.listing-details span{
    font-weight: bold;
    display: block;
   


}
.actions button{
    background-color: transparent;
    color: var(--text-color);
    border: none;
    cursor: pointer;
}
footer{
    text-align: center;
    margin-top: 30px;
    color: var(--secondary-text-color);
}
footer img{
    flex: 1;
    width: 120px; 
    height: auto; 
    margin: 0 10px; 
    cursor: pointer;
    transition: transform 0.3s ease; 
}
footer img:hover {
    transform: scale(1.1);
}
footer i {
    margin-right: 10px; 
    font-size: 20px;
        
}
/* Style for social icons */
.social-icons i {
    font-size: 20px;          
    margin: 10px;             
    padding: 10px;
    border-radius: 20%;       
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease; 
}

.social-icons i:hover {
    transform: scale(1.2);  
}

/* Icon colors */
.fa-instagram {
    color: #e239b5;
}

.fa-facebook {
    color: #2c66bd;
}

.fa-facebook-messenger {
    color: #000000;
}

.fa-whatsapp {
    color: #59a033;
}

/* Align images vertically */
.app-images {
    display: flex;
    flex-direction: column;  
    align-items: center;      
    margin-top: 20px;
}

.app-images img {
    margin: 10px 0;           
    width: 150px;             
    height: auto;           
}


    
/* Media Queries */
@media (max-width: 768px) {
    .container{
        padding: 10px;
    }
    button{
        font-size: 1em;
    }
    footer img {
        width: 100px; 
    }
    
    
}

