/*!
    Copyright (c) 2025 Lucido. All rights reserved.
    Project Name: Lucido Bot Backend
    Project URI: https://lucido.amea.space
    Author: Yumisitrix
    Author URI: https://github.com/Yumisitrix
    Description: Backend-System für den privaten Lucido Discord Bot, maßgeschneidert für individuelle Anforderungen.
    License: GPL-3.0+
    Version: 1.0
    License URI: http://www.gnu.org/licenses/gpl-3.0.html
    Tags: lucido, discord-bot, backend, privat, custom
    Text Domain: lucido
    Disclaimer: Diese Software wird "wie besehen" bereitgestellt, ohne jegliche ausdrückliche oder stillschweigende Gewährleistung, einschließlich, aber nicht beschränkt auf die Gewährleistung der Marktgängigkeit, Eignung für einen bestimmten Zweck oder Nichtverletzung von Rechten Dritter. Der Autor haftet nicht für Schäden, die durch die Nutzung der Software entstehen.
    Attribution: Bootstrap, Discord, Node.js.
*/

/* START - General */
body{
    background-color: #2F2F2F;
    color: #fff;
    overflow: auto;
}
body a{
    color: #9370DB;
    text-decoration: underline;
    cursor: pointer;
}
body a:hover,
body a:active{
    color: #7759b1;
}
table{
    width: 100%;
}
/* END - General styling */

/* START - Container base */
#background-container{
    background-color: #4B4B4B;
    border: 1px solid #9370DB;
    box-shadow: 0 0 10px rgba(177, 156, 217, 0.7);
    margin: 3rem;
}
/* END - Container base */

/* START - Default btn styling */
body .btn,
#background-container .btn{
    color: #fff;
    background-color: #9370DB;
    width: 100%;
}
body .btn:hover,
#background-container .btn:hover{
    background-color: #7759b1;
}
body .btn:active,
#background-container .btn:active{
    border-color: #573f7e;
}
/* END - Default btn styling */

/* START - Server-Blocks in Dashboard */
.guilds-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.guild-card {
    border: 1px solid #9370DB;
    padding: 1rem;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 0 10px rgba(177, 156, 217, 0.7);
    font-weight: bold;
}
/* END - Server-Blocks in Dashboard */