/* TeamViewer Download Button Styling */

/* Button container in navbar */
.teamviewer-download-btn {
    margin-left: 15px;
}

/* Button styling */
.btn-teamviewer {
    display: inline-block;
    padding: 8px 20px !important;
    background: linear-gradient(135deg, #0e4194 0%, #1a5bb8 100%);
    color: #ffffff !important;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(14, 65, 148, 0.3);
    border: 2px solid transparent;
    white-space: nowrap;
}

/* Hover effect */
.btn-teamviewer:hover {
    background: linear-gradient(135deg, #1a5bb8 0%, #0e4194 100%);
    box-shadow: 0 4px 12px rgba(14, 65, 148, 0.5);
    transform: translateY(-2px);
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Active/Focus state */
.btn-teamviewer:active,
.btn-teamviewer:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    outline: none;
}

/* Icon spacing */
.btn-teamviewer .fa {
    margin-right: 6px;
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {

    /* In mobile menu, button takes full width */
    .teamviewer-download-btn {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    .btn-teamviewer {
        display: block;
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .btn-teamviewer {
        padding: 6px 15px !important;
        font-size: 13px;
    }

    .btn-anydesk {
        padding: 6px 15px !important;
        font-size: 13px;
    }
}

/* Ensure button doesn't break navbar alignment */
@media (min-width: 768px) {
    .teamviewer-download-btn {
        display: flex;
        align-items: center;
    }

    .teamviewer-download-btn a {
        margin-top: 0;
    }

    .anydesk-download-btn {
        display: flex;
        align-items: center;
    }

    .anydesk-download-btn a {
        margin-top: 0;
    }
}

/* AnyDesk Download Button Styling */

/* Button container in navbar */
.anydesk-download-btn {
    margin-left: 15px;
}

/* Button styling */
.btn-anydesk {
    display: inline-block;
    padding: 8px 20px !important;
    background: linear-gradient(135deg, #ef443b 0%, #d63a32 100%);
    color: #ffffff !important;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 68, 59, 0.3);
    border: 2px solid transparent;
    white-space: nowrap;
}

/* Hover effect */
.btn-anydesk:hover {
    background: linear-gradient(135deg, #d63a32 0%, #ef443b 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 59, 0.5);
    transform: translateY(-2px);
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Active/Focus state */
.btn-anydesk:active,
.btn-anydesk:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    outline: none;
}

/* Icon spacing */
.btn-anydesk .fa {
    margin-right: 6px;
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {

    /* In mobile menu, button takes full width */
    .anydesk-download-btn {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    .btn-anydesk {
        display: block;
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
}