/* Partner Site Styles */

/* Business Lookup Styles */
.business-lookup-container {
    margin-top: 20px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #f0f8f0;
    border-color: #0b783d;
    color: #0b783d;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #0c5460;
    color: #0c5460;
}

.alert h5 {
    margin-top: 0;
    margin-bottom: 10px;
}

.alert p {
    margin-bottom: 10px;
}

/* Business Profile Styles */
.file-upload-area {
    border: 2px dashed #ccc;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    border-color: #0b783d;
    background-color: #f0f8f0;
}

.file-upload-area input[type="file"] {
    display: none;
}

.file-upload-area label {
    display: block;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

/* Verifying Status Styles */
.verifying-status-container {
    padding: 40px 20px;
}

.verifying-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.verifying-icon i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Account Approved Styles */
.account-approved-container {
    padding: 40px 20px;
}

.success-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.business-info {
    background-color: #f9f9f9;
    border-left: 4px solid #0b783d;
    padding: 15px;
    border-radius: 4px;
    text-align: left;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row label {
    font-weight: bold;
    color: #354a5e;
    min-width: 150px;
}

.info-row p {
    margin: 0;
    color: #666;
}

/* Dashboard Styles - Profile Info */
.page-cms-content {
    padding: 20px;
}

.title-page {
    font-size: 24px;
    font-weight: bold;
    color: #354a5e;
    margin-bottom: 10px;
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: transparent;
    border-radius: 4px;
}

.breadcrumb-item {
    display: inline-block;
    margin-right: 10px;
}

.breadcrumb-item img {
    margin-right: 5px;
    vertical-align: middle;
}

.breadcrumb-item:before {
    content: "/";
    margin: 0 10px;
    color: #999;
}

.breadcrumb-item:first-child:before {
    content: "";
    margin: 0;
}

.breadcrumb-item.active {
    color: #0b783d;
    font-weight: bold;
}

/* Services List Styles */
.services-list {
    margin-top: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table thead {
    background-color: #f5f5f5;
    border-bottom: 2px solid #ddd;
}

.table th {
    padding: 12px 15px;
    text-align: left;
    color: #354a5e;
    font-weight: bold;
    font-size: 14px;
}

.table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.table tbody tr:hover {
    background-color: #f9f9f9;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.badge-success {
    background-color: #0b783d;
    color: white;
}

.badge-warning {
    background-color: #ffc107;
    color: #333;
}

.badge-secondary {
    background-color: #999;
    color: white;
}

/* Form Styles */
.fit-w {
    width: 100%;
}

.input-field {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #354a5e;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: #0b783d;
    box-shadow: 0 0 5px rgba(11, 120, 61, 0.3);
}

.input-field:disabled,
.input-field[readonly] {
    background-color: #f5f5f5;
    color: #999;
}

textarea.input-field {
    resize: vertical;
}

select.input-field {
    cursor: pointer;
}

/* Button Styles */
.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: #0b783d;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #085a2e;
    text-decoration: none;
}

.btn:active {
    background-color: #064620;
}

.btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Text Styles */
.text-body-big {
    font-size: 15px;
}

.text-danger {
    color: #dc3545;
}

.text-success {
    color: #0b783d;
}

.color-strong {
    color: #354a5e;
}

.font-bold {
    font-weight: bold;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* Margin Utilities */
.margin-top-10px {
    margin-top: 10px;
}

.margin-top-15px {
    margin-top: 15px;
}

.margin-top-20px {
    margin-top: 20px;
}

.margin-top-30px {
    margin-top: 30px;
}

.margin-bot-10px {
    margin-bottom: 10px;
}

.margin-0 {
    margin: 0;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .business-info {
        padding: 10px;
    }

    .info-row {
        flex-direction: column;
    }

    .info-row label {
        margin-bottom: 5px;
    }

    .table {
        font-size: 12px;
    }

    .table th,
    .table td {
        padding: 8px 10px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .title-page {
        font-size: 18px;
    }
}

@media only screen and (max-width: 576px) {
    .page-cms-content {
        padding: 10px;
    }

    .business-info {
        padding: 10px;
    }

    .table {
        font-size: 11px;
    }

    .table th,
    .table td {
        padding: 6px 8px;
    }

    .badge {
        padding: 4px 8px;
        font-size: 10px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .input-field {
        padding: 8px 10px;
        font-size: 13px;
    }
}
