/* public/css/web-sitesi.css */
.sat-btn-add-website, .sat-btn-edit-website, .sat-btn-website {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 5px;
}

.sat-btn-add-website {
    background-color: #007782; /* Açık buz mavisi */
    color: white;
}

.sat-btn-edit-website {
    background-color: #d3d3d3; /* Açık gri */
    color: #000000; /* Siyah */
    margin-left: 5px;
}

.sat-btn-website {
    background-color: #d3d3d3; /* Açık gri */
    color: #000000; /* Siyah */
}

.website-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.website-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.website-modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 400px;
    max-width: 90%;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    z-index: 999;
}

.website-modal-content h3 {
    margin: 0 0 15px;
    font-size: 18px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-top: 125px;
}

.website-modal .modal-footer {
    text-align: center;
    margin-top: 15px;
}

.website-modal .modal-footer button {
    background-color: #007782; /* Açık buz mavisi */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}

.website-modal .modal-kapat {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
}

.website-modal .modal-kapat:hover {
    color: #000;
}