@charset "utf-8";
/* CSS Document */

body {
  background-color: lightyellow; /* Light gray background */
}
.footer {
    background-image: url(Images/Footer.png);
    height: 60px;
    float: none;
    clear: both;
    margin-top: 20px;
    padding-top: 10px;
}
.container {
  width: 1080px;
  margin: 0 auto;
}
td img {
  display: block;
  margin: 0 auto;
}
td video {
    display: block;
    margin: 0 auto;
}
.minimal-width {
    width: 1%; /* Forces cell to be as small as possible */
    white-space: nowrap; /* Prevents wrapping */
    text-align: left; /* Ensures left alignment */
}

.minimal-width img {
    display: block; /* Removes any inline spacing */
}
 .toolbar-container {
            width: 100%;
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
            padding: 0;
            margin: 0;
            box-shadow: 0 2px 8px rgba(44, 90, 160, 0.3);
        }
        
        .toolbar {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 60px;
            max-width: 1080px;
            margin: 0 auto;
        }
        
        .nav-item {
            flex: 1;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.3s ease;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .nav-item:last-child {
            border-right: none;
        }
        
        .nav-link {
            color: white;
            text-decoration: none;
            font-family: 'Georgia', serif;
            font-size: 16px;
            font-weight: 500;
            padding: 20px 15px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .nav-item:hover .nav-link::before {
            left: 100%;
        }
        
        .nav-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .nav-link:hover {
            color: #f0f8ff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }
        
        .nav-item.active {
            background: rgba(255, 255, 255, 0.15);
        }
        
        .nav-item.active .nav-link {
            color: #f0f8ff;
            font-weight: 600;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .toolbar {
                flex-direction: column;
                height: auto;
            }
            
            .nav-item {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-item:last-child {
                border-bottom: none;
            }
            
            .nav-link {
                font-size: 14px;
                padding: 15px;
            }
        }
        
        /* Professional accent line */
        .toolbar-container::after {
            content: '';
            display: block;
            height: 3px;
            background: linear-gradient(90deg, #1e3d6f, #2c5aa0, #1e3d6f);
            margin: 0;
        }
 .bio-container {
        padding: 20px;
        font-family: 'Georgia', serif;
        line-height: 1.6;
        color: #333;
    }
    
    .header {
        border-bottom: 2px solid #2c5aa0;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    .name {
        font-size: 28px;
        font-weight: bold;
        color: #2c5aa0;
        margin-bottom: 5px;
    }
    
    .title {
        font-size: 18px;
        color: #666;
        font-style: italic;
    }
    
    .credentials {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #2c5aa0;
        margin: 20px 0;
    }
    
    .credential-item {
        margin-bottom: 8px;
    }
    
    .credential-item:last-child {
        margin-bottom: 0;
    }
    
    .highlight {
        color: #2c5aa0;
        font-weight: 600;
    }
    
    .specialization {
        margin-top: 20px;
    }
    
    .link {
        color: #2c5aa0;
        text-decoration: none;
    }
    
    .link:hover {
        text-decoration: underline;
    }
.Headlines_Gazette {
	float: left;
	width: 34%;
}

/* News Feed Headline Styling */
#legal-feed a,
#ip-feed a {
    color: #dc143c !important; /* Crimson color */
    text-decoration: none !important; /* Remove underline */
    font-weight: bold !important; /* Make bold */
    transition: color 0.3s ease;
}

#legal-feed a:hover,
#ip-feed a:hover {
    color: #b22222 !important; /* Darker crimson on hover */
    text-decoration: none !important; /* Ensure no underline on hover */
}
.img-left {
  display: block;
  margin-left: 0;
}
.map-container {
  max-width: 1080px;
  margin: 30px auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 10px;
}

.map-caption {
  text-align: center;
  font-size: 1em;
  color: #333;
  margin-top: 10px;
  font-weight: 600;
  font-family: Arial, sans-serif;
}

