/* public.css */
.tms-public-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.tms-tree-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tms-tree-header {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.tms-tree-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.tms-tree-title {
    font-size: 2rem;
    margin: 0 0 10px;
}

.tms-tree-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.tms-tree-body {
    padding: 30px;
}

.tms-detail-row {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tms-detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tms-detail-icon {
    width: 50px;
    font-size: 1.8rem;
    color: #2e7d32;
}

.tms-detail-content {
    flex: 1;
}

.tms-detail-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.tms-detail-value {
    font-size: 1.2rem;
    color: #333;
}

.tms-health-healthy { color: #2e7d32; }
.tms-health-dried { color: #d32f2f; }
.tms-health-sick { color: #ff9800; }

.tms-scan-container {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-top: 40px;
}

.tms-scan-icon {
    font-size: 5rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.tms-scan-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.tms-scan-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 25px;
}