/* Portfolio Table - Matching Directory Styling */

.portfolio-domains-table-container {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(51, 65, 85, 0.6);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.portfolio-domains-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.portfolio-domains-table thead {
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
    backdrop-filter: blur(10px);
}

.portfolio-domains-table th {
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.8125rem;
    color: #14b8a6;
    border-bottom: 2px solid rgba(8, 145, 178, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.portfolio-domains-table td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.6);
    vertical-align: middle;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-domains-table tbody tr {
    transition: background 0.2s ease;
}

.portfolio-domains-table tbody tr:hover {
    background: rgba(8, 145, 178, 0.05);
}

/* Column Widths */
.portfolio-domains-table th:nth-child(1) { width: 250px; }
.portfolio-domains-table th:nth-child(2) { width: 120px; text-align: center; }
.portfolio-domains-table th:nth-child(3) { width: 120px; text-align: center; }
.portfolio-domains-table th:nth-child(4) { width: 100px; text-align: center; }
.portfolio-domains-table th:nth-child(5) { width: 150px; text-align: center; }
.portfolio-domains-table th:nth-child(6) { width: 160px; text-align: center; }

/* Cell Styles */
.portfolio-domain-name {
    font-weight: 600;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, monospace;
}

.portfolio-price-buy, .portfolio-price-auction {
    font-weight: 700;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, monospace;
}

.portfolio-price-buy { color: #10b981; }
.portfolio-price-auction { color: #06b6d4; }
.portfolio-price-none { color: rgba(255, 255, 255, 0.5); }

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

.portfolio-category-badge {
    background: rgba(8, 145, 178, 0.2);
    color: #06b6d4;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 145, 178, 0.3);
}

.portfolio-auction-link {
    text-align: center;
}

.portfolio-auction-btn {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    border: none;
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.portfolio-auction-btn:hover {
    background: linear-gradient(135deg, #0e7490 0%, #075985 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.portfolio-no-auction {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-style: italic;
}

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

.portfolio-action-buttons {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.portfolio-action-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.portfolio-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.portfolio-btn-buy { background: linear-gradient(135deg, #10b981, #059669); }
.portfolio-btn-buy:hover { background: linear-gradient(135deg, #059669, #047857); }

.portfolio-btn-offer { background: linear-gradient(135deg, #0891b2, #0e7490); }
.portfolio-btn-offer:hover { background: linear-gradient(135deg, #0e7490, #075985); }

.portfolio-btn-enquiry { background: linear-gradient(135deg, #f97316, #ea580c); }
.portfolio-btn-enquiry:hover { background: linear-gradient(135deg, #ea580c, #dc2626); }

.portfolio-btn-auction { background: linear-gradient(135deg, #14b8a6, #10b981); }
.portfolio-btn-auction:hover { background: linear-gradient(135deg, #10b981, #059669); }

.portfolio-btn-manage { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.portfolio-btn-manage:hover { background: linear-gradient(135deg, #4f46e5, #4338ca); }

.portfolio-btn-login { background: rgba(8, 145, 178, 0.8); width: auto; padding: 0 12px; }
.portfolio-btn-login:hover { background: rgba(8, 145, 178, 1); }

.portfolio-auction-active, .portfolio-owner-domain {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-style: italic;
}

.portfolio-legend {
    text-align: center;
    padding: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(30, 41, 59, 0.5);
    border-top: 1px solid rgba(51, 65, 85, 0.6);
    border-radius: 0 0 0.75rem 0.75rem;
    backdrop-filter: blur(10px);
}

.portfolio-legend span {
    margin: 0 12px;
}

.portfolio-legend strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}
