/* HostHive Additional Template Overrides - Teal Blue, Light Blue & Light Gray */

/* Login Page Styling */
.logincontainer {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logincontainer .form-group label {
    font-weight: 500;
    color: #2D3748;
}

.logincontainer .checkbox label {
    color: #718096;
}

#login {
    min-width: 120px;
}

/* Client Area Dashboard Styling */
.tiles {
    margin: 0 -15px 30px;
}

.tiles .tile {
    padding: 12px;
    transition: all 0.3s ease;
}

.tiles .tile a {
    display: block;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    padding: 25px 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tiles .tile a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.tiles .tile .icon {
    margin-bottom: 10px;
}

.tiles .tile .icon i {
    font-size: 2.5em;
    color: #00838F;
}

.tiles .tile .stat {
    font-size: 2em;
    font-weight: 700;
    color: #2D3748;
}

.tiles .tile .title {
    margin-top: 5px;
    font-weight: 500;
    color: #718096;
}

.tiles .tile .highlight {
    display: none;
}

/* Colors for the dashboard tiles */
.tiles .tile:nth-child(1) .icon i {
    color: #00838F; /* Teal Blue - primary */
}

.tiles .tile:nth-child(2) .icon i {
    color: #29B6F6; /* Light Blue - secondary */
}

.tiles .tile:nth-child(3) .icon i {
    color: #006064; /* Dark Teal - primary dark */
}

.tiles .tile:nth-child(4) .icon i {
    color: #81D4FA; /* Light Blue lighter shade - secondary light */
}

.home-kb-search {
    position: relative;
    margin-bottom: 40px;
}

.home-kb-search input {
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.home-kb-search input:focus {
    border-color: #00838F;
    box-shadow: 0 0 0 0.2rem rgba(0, 131, 143, 0.25);
}

.home-kb-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #00838F;
    font-size: 18px;
}

/* Client Home Panels */
.client-home-panels .panel-accent-primary {
    border-top: 3px solid #00838F;
}

.client-home-panels .panel-accent-green {
    border-top: 3px solid #00838F;
}

.client-home-panels .panel-accent-emerald {
    border-top: 3px solid #29B6F6;
}

.client-home-panels .panel-accent-asbestos {
    border-top: 3px solid #718096;
}

.client-home-panels .panel-accent-blue {
    border-top: 3px solid #006064;
}

.client-home-panels .panel-accent-gold {
    border-top: 3px solid #81D4FA;
}

.client-home-panels .panel-default > .panel-heading {
    background-color: white;
}

.list-group-item {
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

.list-group-item.active, 
.list-group-item.active:focus, 
.list-group-item.active:hover {
    background-color: #00838F;
    border-color: #00838F;
}

/* Invoice Page Styling */
.invoice-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin: 30px auto;
    max-width: 850px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.invoice-header {
    margin-bottom: 30px;
}

.invoice-col {
    margin-bottom: 20px;
}

.invoice-status {
    margin-top: 15px;
    padding: 10px 0;
}

.invoice-status span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 500;
}

.invoice-status .paid {
    background-color: rgba(0, 131, 143, 0.1);
    color: #00838F;
}

.invoice-status .unpaid {
    background-color: rgba(41, 182, 246, 0.1);
    color: #29B6F6;
}

.invoice-status .cancelled {
    background-color: rgba(239, 83, 80, 0.1);
    color: #ef5350;
}

.invoice-status .refunded {
    background-color: rgba(121, 134, 203, 0.1);
    color: #7986CB;
}

.invoice-status .collections {
    background-color: rgba(186, 104, 200, 0.1);
    color: #BA68C8;
}

.invoice-status .draft {
    background-color: rgba(113, 128, 150, 0.1);
    color: #718096;
}

.invoice-pay {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* 3D Secure Page */
.submit-3d {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* General Form Styling */
.form-control {
    border-radius: 8px;
    padding: 10px 15px;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #00838F;
    box-shadow: 0 0 0 0.2rem rgba(0, 131, 143, 0.25);
}

select.form-control {
    height: 42px;
}

.input-group-addon {
    border-radius: 8px;
    background-color: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.1);
    color: #718096;
}

/* Domain Search Results */
.domain-checker-container {
    background: linear-gradient(135deg, #00838F 0%, #0288D1 100%);
    padding: 40px 0;
}

.domain-pricing .tld-row {
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.domain-pricing .tld-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Support Ticket Area */
.ticket-reply {
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ticket-reply.staff {
    border-left: 2px solid #00838F;
}

.ticket-reply.client {
    border-left: 2px solid #29B6F6;
}

.ticket-reply .date {
    margin-bottom: 10px;
    color: #718096;
}

/* View Quote Page */
.panel-quote {
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.panel-quote .panel-heading {
    background-color: #00838F;
    color: white;
    border-color: #00838F;
}

/* Knowledge Base */
.kb-article-title {
    margin-bottom: 20px;
    color: #2D3748;
    font-weight: 600;
}

.kb-article-content {
    margin-top: 15px;
}

.kb-category {
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.kb-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.kb-category-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.kb-category-title .fa, .kb-category-title .fas {
    color: #00838F;
    margin-right: 5px;
}

/* Tables */
.dataTables_wrapper .dataTables_filter input {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #00838F;
    box-shadow: 0 0 0 0.2rem rgba(0, 131, 143, 0.25);
}

.dataTables_wrapper .dataTables_length select {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 8px;
    padding: 5px 12px;
    margin: 0 3px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #00838F;
    border-color: #00838F;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #006064;
    border-color: #006064;
    color: white !important;
}
