

.booth-links a {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.booth-links a:hover {
    background-color: #0056b3;
}

.shell, .rawSpace {
    margin-top: 30px;
}

.shell p, .rawSpace p {
    margin: 15px 0px;
}

.shell ul, .rawSpace ul {
    list-style-type: none;
    padding-left: 0;
}

.shell ul li, .rawSpace ul li {
    font-size: 1em;
    padding: 5px 0;
}

/* Add more styles if needed */

/* Booth package section */
.boothPackage {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 40px;
}

.boothPackage .text {
    margin-bottom: 20px;

}

.tableContainer table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tableContainer table, 
.tableContainer th, 
.tableContainer td {
    border: 1px solid #000;
}

.tableContainer th, 
.tableContainer td {
    padding: 12px 15px;
    text-align: left;
}

.tableContainer th {
    font-weight: bold;
}

.shell, .rawSpace {
    margin-top: 30px;
}

.shell p, .rawSpace p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 5px;
}

.shell ul, .rawSpace ul {
    list-style-type: none;
    padding-left: 0;
}

.shell ul li, .rawSpace ul li {
    font-size: 1em;
    padding: 5px 0;
}



/* Highlight paid services */
.shell ul li, .rawSpace ul li {
    padding-left: 20px;
    position: relative;
}

.shell ul li::before, 
.rawSpace ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 1.3em;
    top: 50%;
    transform: translateY(-50%);
}

/* Button or links styling */
a.btn, .btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

a.btn:hover, .btn:hover {
    background-color: #0056b3;
}