﻿html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: aliceblue;
    font-family: sans-serif;
    overflow-x: hidden;
}

.prof-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.prof-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 20px;
    color: #222;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.col {
    flex: 1 1 50%;
    min-width: 0;
    max-width: 100%;
    padding: 4px;
}

.prof-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

    .prof-table td {
        padding: 8px 10px;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

.prof-label {
    width: 15%;
    text-align: right;
    font-weight: bold;
}

.prof-value {
    width: 85%;
    text-align: left;
}

/* نام بزرگ‌تر و بولد */
.prof-name {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

canvas {
    display: block;
    max-width: 100%;
    height: 240px;
}

@media (max-width:768px) {
    .row {
        flex-direction: column;
    }

    canvas {
        height: 352px;
    }
}
