/* Dönüşüm Hesaplayıcı CSS Stilleri */

.donusum-hesaplayici-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.donusum-hesaplayici-header {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.donusum-hesaplayici-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.donusum-hesaplayici-header p.lead {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.donusum-calculator-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donusum-calculator-section h2 {
    color: #3a7bd5;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.donusum-calculator-section h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 50px;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
}

.donusum-form {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.donusum-form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.donusum-form-group {
    flex: 1;
    margin: 0 10px;
    min-width: 200px;
}

.donusum-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #495057;
    font-weight: 500;
}

.donusum-form-group select,
.donusum-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.donusum-form-group select:focus,
.donusum-form-group input:focus {
    border-color: #3a7bd5;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.2);
    outline: none;
}

.donusum-form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.donusum-swap-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.donusum-swap-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.donusum-swap-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.donusum-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.donusum-btn {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 10px;
}

.donusum-btn-primary {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    box-shadow: 0 4px 8px rgba(58, 123, 213, 0.2);
}

.donusum-btn-secondary {
    background-color: #6c757d;
    color: white;
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.2);
}

.donusum-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.donusum-formula {
    background-color: #e3f2fd;
    border-left: 4px solid #3a7bd5;
    padding: 15px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
    color: #0d47a1;
    font-size: 0.95rem;
}

.donusum-common-conversions {
    margin-top: 40px;
}

.donusum-common-conversions .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.donusum-common-conversions .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.donusum-common-conversions .card-header {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    font-weight: 600;
    padding: 15px 20px;
    border-bottom: none;
}

.donusum-common-conversions .list-group-item {
    border-left: none;
    border-right: none;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donusum-common-conversions .list-group-item:first-child {
    border-top: none;
}

.donusum-common-conversions .badge {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: normal;
}

.donusum-history-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donusum-history-section h2 {
    color: #3a7bd5;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.donusum-history-section h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 50px;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
}

.donusum-history-section h3 {
    color: #00d2ff;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.donusum-history-section p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .donusum-form-row {
        flex-direction: column;
    }
    
    .donusum-form-group {
        margin: 10px 0;
    }
    
    .donusum-swap-container {
        margin: 15px 0;
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .donusum-hesaplayici-header {
        padding: 20px;
    }
    
    .donusum-hesaplayici-header h1 {
        font-size: 2rem;
    }
    
    .donusum-calculator-section,
    .donusum-history-section {
        padding: 20px;
        margin: 15px;
    }
    
    .donusum-buttons {
        flex-direction: column;
    }
    
    .donusum-btn {
        margin: 5px 0;
        width: 100%;
    }
} 