/* for_friends.css */

/* General body styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFDAB9; /* Magenta background */
}

/* Container to ensure content is centered */
.container {
    margin-top: 2px;
}

/* Product section styling */
.product-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

/* Product box styling */
.product {
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
    background-color: #FFE5E5; /* Light red background for product boxes */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Product image styling */
.product-image {
    max-width: 100%;
    height: auto;
}

/* Product title styling */
.product-title {
    margin-top: 10px;
    font-size: 1.5em;
    color: #e91e63; /* Pink color for titles */
}

/* Product description styling */
.product-description {
    font-size: 1em;
    color: #666;
}

/* Button styling */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #e91e63; /* Pink button background */
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.btn:hover {
    background-color: #c2185b; /* Darker pink for button hover */
}



/* Header and navigation styling */
.header, .navbar {
    background-color: #e91e63; /* Pink background for header and navbar */
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav > li > a {
    color: #fff !important;
}

.navbar-nav > li > a:hover {
    background-color: #c2185b; /* Darker pink for hover */
    color: #fff !important;
}
