﻿.colors-placeholder {
    color: #DD6E42;
    color: #E8DAB2;
    color: #4F6D7A;
    color: #C0D6DF;
    color: #EAEAEA;
}

.DPR-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.result-container {
    text-align: center;
}

.dpr-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 2%;
}

.dpr-form {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin: 10px;
    color: black;
}

.dpr-input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.dpr-radiobutton-container{
    display:flex;
    justify-content: space-around;
}

.dice-container{
    display: flex;
    align-items: center; /*weird: makes the D pop out a bit*/
}

input[name=d] {
    background: #dddddd;
}

/* ================================
   Expandable Description Styles
================================ */

.dpr-descriptions {
    margin-top: 1rem;
    padding: 1rem;
}

.dpr-descriptions h3 {
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.dpr-descriptions.expanded .expandable-content {
    max-height: 500px; /* Large enough to fit content */
    opacity: 1;
}

