﻿body {
    background: #f7f9fc;
}

.registrar-hero {
    background: linear-gradient(135deg, #0b2b6b 0%, #1a4a8a 100%);
    color: #fff;
    padding: 90px 0 50px;
}

    .registrar-hero .hero-title {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: .5px;
        margin: 0 0 12px;
        text-align: center;
    }

    .registrar-hero .hero-sub {
        opacity: .92;
        margin: 0;
        text-align: center;
        font-size: 16px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.registrar-section {
    padding: 30px 0 50px;
}

.registrar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.registrar-header {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.registrar-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

    .registrar-logo.spaceship {
        background: #2196F3;
    }

.registrar-info h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    color: #333;
}

.registrar-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.price-type-tabs {
    background: white;
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.price-type-tabs-inner {
    display: flex;
    gap: 10px;
}

.price-type-tab {
    padding: 10px 25px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

    .price-type-tab:hover {
        border-color: #0b2b6b;
        color: #0b2b6b;
    }

    .price-type-tab.active {
        background: #0b2b6b;
        color: white;
        border-color: #0b2b6b;
    }

.registrar-table-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.table-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.table-info {
    color: #666;
    font-size: 14px;
}

.registrar-table {
    width: 100%;
    border-collapse: collapse;
}

    .registrar-table thead {
        background: #f8f9fa;
    }

    .registrar-table th {
        padding: 15px 20px;
        text-align: left;
        font-weight: 600;
        color: #333;
        font-size: 14px;
        border-bottom: 2px solid #e0e0e0;
    }

        .registrar-table th.price-column {
            text-align: center;
        }

            .registrar-table th.price-column.active {
                background: #e6f2ff;
                color: #0b2b6b;
            }

    .registrar-table td {
        padding: 18px 20px;
        border-bottom: 1px solid #f0f0f0;
        color: #666;
        font-size: 14px;
    }

    .registrar-table tbody tr:hover {
        background: #f8f9fa;
    }

    .registrar-table td.price-column {
        text-align: center;
    }

        .registrar-table td.price-column.active {
            background: #e6f2ff;
        }

.tld-name {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.price-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price-value {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.price-currency {
    color: #999;
    font-size: 13px;
}

.error-icon {
    color: #999;
    font-size: 14px;
    cursor: pointer;
    margin-left: 8px;
    transition: all 0.3s;
}

    .error-icon:hover {
        color: #ff4d4f;
        transform: scale(1.2);
    }

.action-cell {
    text-align: center;
}

.visit-btn {
    padding: 6px 20px;
    background: #f0f0f0;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

    .visit-btn:hover {
        background: #e0e0e0;
        color: #333;
    }

.empty-state {
    padding: 60px 20px;
    text-align: center;
    color: #999;
}

    .empty-state i {
        font-size: 48px;
        margin-bottom: 20px;
        color: #ddd;
    }

    .empty-state p {
        font-size: 16px;
        margin: 0;
    }
