﻿
select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    height: 45px;
    background-color: #f7f7f7;
    color: #333;
}

    select:focus {
        border-color: #ff6600; /* input focus rengi */
        outline: none;
        box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
    }

/* CSS ile modal stilleri */
/* CSS ile modal stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 1000; /* En üstte görüntülenmesi için z-index'i artırın */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 400px; /* Kare şeklinde bir modal */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Gölge eklemek için */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover {
        color: black;
    }
