
        .justhaircutcard {
            background-color: #28223f;
            font-family: Montserrat, sans-serif;

            display: flex;
            align-items: center;
            justify-content: center;

            min-height: 100px;
            margin: 0;
        }

        .justhaircutcard h3 {
            margin: 10px 0;
        }

        .justhaircutcard h6 {
            margin: 5px 0;
            text-transform: uppercase;
        }

        .justhaircutcard p {
            font-size: 14px;
            line-height: 21px;
        }


        .justhaircutcard-container {
            position: relative; /* Ensure the child elements can be absolutely positioned if needed */
            background-color: #1f1f38; /* Dark background */
            border: 2px solid #ddd; /* 2px border */
            border-radius: 10px; /* Rounded corners */
            padding-top: 8px; /* Add space for the logo and info at the top */
            padding: 8px; /* Spacing between border and content */
            color: #b3b8cd; /* Light text color */
            box-sizing: border-box; /* Include padding and border in the element size */
            flex: 1; /* Stretch all cards to the tallest one in the row */
            display: flex; /* Enable Flexbox for inner content */
            flex-direction: column; /* Stack content vertically */
            justify-content: space-between; /* Distribute inner content evenly */
            text-align: center; /* Center-align the text */
            align-items: center;
        }


        .justhaircutcard-container-header {
            display: flex; /* Use flexbox to align logo and info horizontally */
            justify-content: space-between; /* Push logo to the left and info to the right */
            align-items: center; /* Ensure they are vertically aligned */
            width: 100%; /* Make the header span the full width of the card */
            position: absolute;
            top: 0; /* Position it at the top of the container */
            left: 0;
            padding: 10px;
            box-sizing: border-box;
        }

        .justhaircutcard-logo {
            border: 1px solid #fff; /* 1px border */
            color: #ffffff;
            background-color: #ffffff;
            position: absolute;
            top: 10px; /* Position from the top */
            left: 10px; /* Position from the left */
            width: 30px;
            height: 30px;
        }


        .justhaircutcard-logo img {
            width: 100%; /* Scale the info image to fit its container */
            height: auto;
        }

        .justhaircutcard-info {
            position: absolute;
            top: 10px; /* Position from the top */
            right: 10px; /* Position from the right */
            width: 30px;
            height: 30px;
        }

        .justhaircutcard-info img {
            width: 100%; /* Scale the logo image to fit its container */
            height: auto;
        }



        .justhaircutcard-round {
            border: 4px solid #7f0000;
            border-radius: 50%;
            padding: 7px;
        }

        .justhaircutcard-skills {
            background-color: #1f1f30;
            padding: 10px;
            margin-top: 10px;
            border-radius: 15px;
            text-align: left; /* Align the text to the left */
            width: 97%;
        }

        .justhaircutcard-skills ul {
            list-style-type: disc;
            margin: 8px;
            padding-left: 0;
        }

        .justhaircutcard-skills ul li {
            border: 1px solid #2d2747;
            border-radius: 2px;
            display: inline-block;
            font-size: 12px;
            margin: 0 7px 7px 0;
            padding: 7px;
        }


        .justslidedisplay {  
            width: 230px;
        }  

        .justslidecontainer {  
            width: 230px; /* Fixed width for all containers */
            display: flex; /* Enable Flexbox inside the container */
            flex-direction: column; /* Stack content vertically */
            justify-content: space-between; /* Space out content evenly */
            text-align: center; /* Center text alignment */
            align-items: stretch; /* Ensure all containers stretch to the same height */
        }  
        .justslidecontainer.unselected {  
            width: 230px; /* Fixed width for all containers */
            display: flex; /* Enable Flexbox inside the container */
            flex-direction: column; /* Stack content vertically */
            justify-content: space-between; /* Space out content evenly */
            text-align: center; /* Center text alignment */
            align-items: stretch; /* Ensure all containers stretch to the same height */
            opacity: 0.6; /* Reduce opacity to 60% */
        }  

        .justslideleft, .justslideright {  
            cursor: pointer;  
            position: absolute;  
            top: 40%;  
            width: auto;  
            padding: 16px;  
            margin-top: -22px;  
            color: white;  
            font-weight: bold;  
            font-size: 18px;  
            transition: 0.6s ease;  
            border-radius: 0 3px 3px 0;  
        }  
        .justslideright {  
            right: 0;  
            border-radius: 3px 0 0 3px;  
        }  
        .justslideleft {  
            left: 0;  
            border-radius: 3px 0 0 3px;  
        }  
            .justslideleft:hover, .justslideright:hover {  
                background-color: rgba(115, 115, 115, 0.8);  
            }  
        .justslidecontent {  
            color: #eff5d4;  
            font-size: 10px;  
            padding: 8px 12px;  
#            position: absolute;  
            top: 10px;  
            width: 100%;  
            text-align: center;  
        } 
/* Wrapper for horizontally aligning the containers */
        .justslide-wrapper {
            display: flex; /* Enable Flexbox layout */
            flex-wrap: wrap; /* Allow items to wrap to the next row */
            justify-content: center; /* Center the cards horizontally */
            gap: 20px; /* Space between cards */
       }
        /* Fading animation */  
        .justslidefade {  
            -webkit-animation-name: justslidefade;  
            -webkit-animation-duration: 0.5s;  
            animation-name: justslidefade;  
            animation-duration: 0.5s;  
        }  
        @-webkit-keyframes justslidefade {  
            from {  
                opacity: .1  
            }  
            to {  
                opacity: 1  
            }  
        }  
  
        @keyframes justslidefade {  
            from {  
                opacity: .1  
            }  
            to {  
                opacity: 1  
            }  
        }  

