/* Preview Button Genel Stilleri */
.preview-button {
    display: block;            
    width: 100%;                 
    text-align: center;
	border-radius:4px;
    padding: 13px 20px;
    margin-top: 10px;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;

/* Hover Durumu */
.preview-button:hover {
    background-color: #ffffff;    /* Hover'da arka plan beyaz */
    color: #000000;               /* Hover'da yazı siyah */
}
