/* Custom class to add the border */
.bordered-row-container {
    border: 1px solid #dee2e6; /* Defines the border style */
    border-radius: 15px;      /* Adds rounded corners */
    padding: 20px;            /* Adds space between border and content */
    background-color: #ffffff; /* Gives the container a white background */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Optional: adds a subtle shadow */
}

/* Style for the list group items */
.list-group-item {
    border-left: none;
    border-right: none;
}
.list-group-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top: none;
}
.list-group-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: none;
}
.workshop-indent-right{
    margin-right: 200px;
}
.workshop-area {
    height: 300px;
    overflow-y: auto;           
    background-color: #f5f5f5;  
    border-radius: 5px;
    padding: 5px;
    /* border: 1px solid #dee2e6; */
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}