/*
 * project.css
 *
 *
 *  @author      Thaler Software GmbH
 *  @copyright   Thaler Software GmbH
 *  @link        https://www.thaler-software.eu
 *
 */

button.discontinue-project-btn {
    float: left;
}

button.clone-project-btn {
    float: left;
}


.arrow-button {
    background-color: #f0f0f0; /* Graue Hintergrundfarbe */
    color: #000; /* Schwarze Textfarbe */
    border: none; /* Kein Rand */
    padding-left: 10px;
    font-size: 16px; /* Schriftgröße */
    border-radius: 5px; /* Abgerundete Ecken */
    transition: box-shadow 0.3s; /* Animation für den Schatten */
    width: 100%;
    cursor: pointer;
}
.arrow-button:focus {
    outline: none; /* Entfernt den Fokus-Rand */
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25); /* Stärkerer Schatten beim Fokussieren */
}
.arrow-up::before {
    content: '▲';
}
.arrow-down::before {
    content: '▼';
}