/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: #2980b9;
    text-decoration: none;
}

.btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Header Styles */
.header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 20px;
    margin-bottom: 30px;
}

.header h1 {
    margin: 0;
    font-size: 28px;
}

/* Domain Search Box */
.domain-search-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.domain-search-box h1 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.domain-search-box .input-group {
    margin: 0 auto;
    max-width: 600px;
}

.domain-search-box .form-control {
    height: 46px;
    font-size: 16px;
}

/* Domain Results */
.domain-results {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.domain-results h3 {
    margin-top: 0;
    color: #2c3e50;
}

/* Pricing Cards */
.services-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.services-section h2 {
    margin-bottom: 30px;
    color: #2c3e50;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #3498db;
    position: relative;
}

.pricing-card.featured:before {
    content: "Popular";
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #3498db;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    margin: 0;
    color: #2c3e50;
}

.price {
    margin: 15px 0;
    font-size: 36px;
    font-weight: bold;
    color: #3498db;
}

.price .currency {
    font-size: 24px;
    vertical-align: super;
}

.price .period {
    font-size: 16px;
    font-weight: normal;
    color: #777;
}

.pricing-features {
    padding: 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Labels */
.label {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
}

.label-success {
    background-color: #2ecc71;
    color: white;
}

.label-danger {
    background-color: #e74c3c;
    color: white;
}

.label-warning {
    background-color: #f39c12;
    color: white;
}

.label-info {
    background-color: #3498db;
    color: white;
}

.label-default {
    background-color: #95a5a6;
    color: white;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Tables */
.table {
    width: 100%;
    margin-bottom: 20px;
    background-color: transparent;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

/* Dashboard Styles */
.content {
    width: 79%;
    margin: 32px 0px;   
}

.stat-card {
    display: flex;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-right: 15px;
}

.stat-icon.bg-primary {
    background-color: #3498db;
}

.stat-icon.bg-success {
    background-color: #2ecc71;
}

.stat-icon.bg-warning {
    background-color: #f39c12;
}

.stat-icon.bg-info {
    background-color: #3498db;
}

.stat-content h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #777;
}

.stat-content h2 {
    margin: 0;
    font-size: 28px;
    color: #2c3e50;
}

.panel {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.panel-heading {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.panel-heading h3 {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

.panel-body {
    padding: 20px;
}

/* Sidebar */
.sidebar {
    top: 0;
    left: 0;
    bottom: 0;
    width: 20%;
    background-color: #2c3e50;
    color: white;
    padding-top: 20px;
    z-index: 1000;
    margin: 30px 0px;
    border-radius: 20px;
}

.sidebar-brand {
    padding: 0 20px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.sidebar-brand h3 {
    margin: 0;
    font-size: 20px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    position: relative;
}

.sidebar-menu li a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.sidebar-menu li a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.sidebar-menu li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar-menu li.active a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .content {
        margin-left: 0;
    }

    .domain-search-box .input-group {
        width: 100%;
    }
}

.container-fluid.maincontainer{
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
}

.sidebar-footer{
        text-align: center;
        background-color: #3ccc;
        padding: 20px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .card{
        padding: 20px;
    }

    .content.table-responsive{
        width: 100%;
    }



       .footer .container {
            
            padding: 52px 15px;
        }

        .container-fluid.maincontainer{
            margin-bottom: 100px!important;
        }