.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.flex-item {
    flex: 1 1 200px; /* flex-grow, flex-shrink, flex-basis */
    min-width: 0; /* Important for text truncation */
    text-align: center;
    border: 1px solid rgba(169, 169, 169, 0.2); /* Light gray with transparency */
    transition: all 0.3s ease;
}

.flex-item:hover {
    border: 1px solid grey; /* Red border on hover (symbolizing boycott) */
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.2); /* Glow effect */
}

.right-align {
    text-align: right;
}

.imp {
    color: red;
    background-color: white;
}

.btn:hover {
    background-color: #db9e30;
}

.landing-img {
    display: flex;
    justify-content: center;
}

ul {
    list-style-type: none;
}

.pages-bar {
    background-color: #cfcfcf;
    color: white;
    margin: 2%;

    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
}

.pages-bar a{
    color: black;
    background-color: hsl(172, 52%, 92%);
    padding: 0.5% 1%;
    margin: 0.5%;
    text-decoration: none;
}

.pages-bar a:hover {
    background-color: #0070f3;
    color: white;
    cursor: pointer;
}

.boycott-from-syria-section {
    text-align: right;
}

.boycott-from-syria-section h4 {
    margin-bottom: 3%;
}

.boycott-from-syria-inner-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.boycott-from-syria-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap-reverse;
}

.boycott-from-syria-images img{
    /* margin: 0.3%; */
}

.boycott-from-syria-social-media a img {
    border: 1px solid white;
    transition: all 0.3s ease;
    /* display: flex; */
    /* justify-content: ; */
}

.boycott-from-syria-social-media a img:hover {
    border: 1px solid grey; /* Red border on hover (symbolizing boycott) */
    /* box-shadow: 0 0 8px rgba(255, 0, 0, 0.2); /* Glow effect */
    box-shadow: 0 0 8px black; /* Glow effect */
}
