.gb-scope.hosting-app {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.panel.card {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.panel-heading.card-header {
    background: #333;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.panel-heading.card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    flex-grow: 1;
}

.panel-body.card-body {
    padding: 0;
}

.collapsable-card-body {
    display: none;
}

.collapsable-card-body.active {
    display: block;
}

.gb-table.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.gb-table.specs-table th,
.gb-table.specs-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.gb-table.specs-table thead th {
    background: #f8f9fa;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
}

.gb-table.specs-table tbody th {
    background: #f8f9fa;
    font-weight: normal;
}

.gb-table.specs-table td {
    text-align: center;
}

.specs-table__first-column__container {
    display: flex;
    align-items: center;
}

.gb-tooltip {
    position: relative;
    margin-left: 5px;
}

.gb-tooltip__toggle--icon {
    cursor: pointer;
    color: #007bff;
    font-weight: bold;
    font-size: 12px;
    border: 1px solid #007bff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gb-tooltip__wrap {
    display: none;
    position: absolute;
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    width: 200px;
    z-index: 1000;
    top: 20px;
    left: 0;
}

.gb-tooltip:hover .gb-tooltip__wrap {
    display: block;
}

.gb-tooltip__arrow {
    position: absolute;
    top: -5px;
    left: 10px;
    border-left: 5px solid transparent;
    border-right: 5px solid #333;
    border-bottom: 5px solid #333;
}

.gb-icon-tick::before {
    content: '\2713';
    color: #00bcd4;
    font-weight: bold;
}

.icon-hyphen::before {
    content: '\2013';
    color: #888;
}

/* Mobile styles */
.hidden-sm.hidden-xs.d-none.d-md-block {
    display: block !important;
}

.hidden-lg.hidden-md.d-md-none {
    display: none !important;
}

@media (max-width: 767px) {
    .hidden-sm.hidden-xs.d-none.d-md-block {
        display: none !important;
    }

    .hidden-lg.hidden-md.d-md-none {
        display: block !important;
    }

    .panel-body.card-body form {
        padding: 15px;
    }

    .form-control.custom-select {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border-radius: 4px;
        border: 1px solid #ddd;
    }
}
