/* --- 1. Sidebar Button Styling --- */
[href="contact/"], [href="contact.html"] {
  color: white !important;
  background-color: #2E3A59;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 10px;
  display: block;
  text-align: center;
}

/* --- 2. Floating Top-Right Button Styling --- */
.floating-contact-btn {
    position: fixed;       /* Stay in one place */
    top: 85px;             /* 85px from top (clears the header) */
    right: 20px;           /* 20px from right edge */
    z-index: 100;          /* Sit on top of everything */

    /* Pretty Styling */
    background-color: #3f51b5; /* Indigo color to match theme */
    color: white !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    border-radius: 50px;   /* Rounded Pill shape */
    padding: 10px 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none; /* No underline */
    transition: transform 0.2s, background-color 0.2s;
}

/* Hover Effect for Floating Button */
.floating-contact-btn:hover {
    transform: translateY(-2px); /* Slight lift */
    background-color: #303f9f;   /* Darker on hover */
}

/* Mobile Tweak: Make it smaller/hide on phones */
@media screen and (max-width: 400px) {
    .floating-contact-btn {
        top: 70px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}