﻿.shepherd-content {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    font-family: 'Roboto', sans-serif;
    color: #333; 
    padding: 12px; 
    max-width: 300px;
}

.shepherd-element {
    width: inherit;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.shepherd-title {
    font-size: 18px;
    font-weight: bold;
    color: #2e3192;
    margin-bottom: 8px;
}

.shepherd-text {
    font-size: 14px; 
    line-height: 1.5; 
}

.shepherd-button {
    background-color: #2e3192; 
    color: #fff; 
    border: none; 
    padding: 8px 16px; 
    border-radius: 4px; 
    font-size: 14px;
    cursor: pointer; 
}

    .shepherd-button:hover {
        background-color: #1b1f65; 
    }

.shepherd-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shepherd-target {
    position: relative;
    border: 2px dashed #2e3192;  Hafif bir kenarlık 
}

.shepherd-content {
    animation: fadeIn 0.5s ease-in-out; 
    transform-origin: center; 
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1); 
    }
}

.shepherd-content.exiting {
    animation: fadeOut 0.3s ease-in-out forwards; 
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

.shepherd-button.danger {
    background-color: #e74c3c; 
    color: #fff;
    border: none;
}