.php3d-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}
@media (max-width: 768px) {
.php3d-content {
grid-template-columns: 1fr;
}
} .php3d-viewer-section {
position: relative;
}
#php3d-viewer {
width: 100%;
height: 400px;
background-color: #f3f4f6;
border-radius: 8px;
overflow: hidden;
position: relative;
}
.php3d-viewer-placeholder {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
color: #6b7280;
text-align: center;
}
.php3d-viewer-placeholder h2 {
margin-bottom: 8px;
color: #4f46e5;
}
.php3d-upload-button {
display: flex;
align-items: center;
margin-top: 16px;
padding: 10px 16px;
background-color: #4f46e5;
color: white;
font-weight: 500;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.php3d-upload-button:hover {
background-color: #4338ca;
}
.php3d-upload-icon {
width: 20px;
height: 20px;
margin-right: 8px;
}
.php3d-dragover {
border: 2px dashed #4f46e5;
} .php3d-calculator-section {
padding: 16px;
background-color: #f9fafb;
border-radius: 8px;
}
.php3d-results {
margin-top: 24px;
padding-top: 16px;
border-top: 1px solid #e5e7eb;
}
.php3d-result-item {
display: flex;
justify-content: space-between;
margin-bottom: 12px;
font-size: 14px;
color: #374151;
}
.php3d-result-item:last-child {
margin-bottom: 0;
font-weight: bold;
font-size: 16px;
} .php3d-total-cost-container {
max-width: 600px;
margin: 0 auto;
}
.php3d-total-cost-container h2 {
color: #4f46e5;
text-align: center;
margin-bottom: 24px;
}
.php3d-total-results {
margin-top: 16px;
padding: 16px;
background-color: #f9fafb;
border-radius: 8px;
}
.php3d-total {
font-size: 18px;
color: #4f46e5;
} .php3d-calculator-container {
max-width: 320px;
margin: 0 auto;
}
.php3d-calculator {
background-color: #f3f4f6;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.php3d-calc-screen {
background-color: #374151;
color: white;
padding: 16px;
text-align: right;
}
.php3d-calc-operation {
min-height: 20px;
font-size: 14px;
color: #9ca3af;
margin-bottom: 4px;
}
.php3d-calc-typed {
font-size: 32px;
font-weight: bold;
}
.php3d-calc-button-row {
display: flex;
}
.php3d-calc-button {
flex: 1;
border: none;
background-color: white;
padding: 16px;
font-size: 18px;
transition: background-color 0.2s;
cursor: pointer;
}
.php3d-calc-button:hover {
background-color: #f3f4f6;
}
.php3d-calc-button.php3d-operator {
background-color: #4f46e5;
color: white;
}
.php3d-calc-button.php3d-operator:hover {
background-color: #4338ca;
}
.php3d-calc-button.php3d-action {
background-color: #e5e7eb;
}
.php3d-calc-button.php3d-action:hover {
background-color: #d1d5db;
}