﻿
/* Custom Button Styling */
.copy-btn {
    background: linear-gradient(90deg, #007bff, #0056b3);
    border: none;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 300;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    background: linear-gradient(90deg, #0056b3, #003d80);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Custom Toast Styling */
.toast {
    border-radius: 10px;
    background-color: #28a745;
    color: white;
    font-size: 14px;
    max-width: 300px;
}

.toast-header {
    background-color: #218838;
    color: white;
    border-radius: 10px 10px 0 0;
}

/* Ensure Toast is centered */
.toast-container {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1055;
}


/** ******************** End ShortLink **************************** **/

/* Zoom Lens Styling */
.zoom-lens {
    position: absolute;
    border: 2px solid #007bff;
    background-color: rgba(0, 123, 255, 0.2);
    width: 100px;
    height: 100px;
    display: none;
    cursor: none;
}

.zoom-result {
    position: absolute;
    top: 0;
    left: 105%;
    width: 300px;
    height: 300px;
    border: 2px solid #007bff;
    background-color: #fff;
    display: none;
    background-repeat: no-repeat;
    z-index: 1000;
}

/* Thumbnail Styling */
.thumbnail {
    width: 80px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
}

    .thumbnail:hover {
        transform: scale(1.1);
        border: 2px solid #007bff;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .zoom-result {
        display: none !important;
    }

    .main-image img {
        cursor: pointer;
    }
}

