* {
    margin: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 65px;
    font-family: 'Inter', sans-serif;
    background-image: url('../images/bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .header {
            background: rgba(255,255,255,0.95);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .main-content {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-top: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
flex: 1;
        }
        .page-title {
            color: #21058e;
            text-align: center;
            margin-bottom: 30px;
            border-bottom: 2px solid #009cde;
        }
        .search-box {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 15px;
            align-items: end;
        }
        @media (max-width: 768px) {
            .form-row { grid-template-columns: 1fr; }
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #495057;
        }
        .form-control {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #ced4da;
            border-radius: 4px;
            font-size: 14px;
        }
        .form-control:focus {
            border-color: #009cde;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,156,222,0.2);
        }
        .btn {
            background: linear-gradient(135deg, #d30002, #ff4444);
            color: white;
            border: none;
            padding: 11px 24px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            height: 42px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(211,0,2,0.3);
        }
        .results-header {
            background: #21058e;
            color: white;
            padding: 15px 20px;
            border-radius: 8px 8px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        .data-table th {
            background: #f8f9fa;
            padding: 12px;
            text-align: left;
            border-bottom: 2px solid #dee2e6;
        }
        .data-table td {
            padding: 12px;
            border-bottom: 1px solid #eee;
        }
        .data-table tr:hover { background: #f8f9fa; }
        .badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }
        .badge-warning { background: #fff3cd; color: #856404; }
	.badge-warning1 { background: #fbc7fe; color: #856404; }
        .badge-success { background: #d4edda; color: #155724; }
        .btn-sm {
            background: #009cde;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
        }
        .btn-sm:hover { background: #007bb5; }
        .btn-sm.selected { background: #6c757d; cursor: default; }
        .porto-details {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
        }
        .armadores-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 6px;
        }
        .armadores-table th {
            background: #21058e;
            color: white;
            padding: 12px;
            text-align: left;
        }
        .armadores-table td {
            padding: 12px;
            border-bottom: 1px solid #dee2e6;
        }
        .alert {
            padding: 15px;
            border-radius: 4px;
            margin: 20px 0;
        }
        .alert-danger { background: #f8d7da; color: #721c24; }
        .alert-info { background: #d1ecf1; color: #0c5460; }

.footer {
    background: linear-gradient(135deg, #d30002 0%, #21058e 100%);
    color: white;
    flex-shrink: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }
        .footer img { height: 25px; 
	}
.nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #21058e;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #21058e;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}
.logo {
    flex: 0 0 auto;
    margin-right: 20px;
}
        .logo {
            display: flex;
            align-items: center;
            gap: 550px;
        }

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}


.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #21058e;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.91);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 65px;
    display: flex;
    align-items: center;
}