/* Landing Studio Pages Shared Styles */

.suite-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
}

.suite_box {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: calc(50% - 15px);
    margin: 0;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    height: auto;
    width: auto !important;
    white-space: normal !important;
    overflow: visible !important;
}

.suite_box.major-arcana {
    flex: 0 0 auto;
    max-width: 100%;
    min-height: 275px; /* For rwstut */
}

/* Specific height for cbdtmtut */
.landing_studio_cbdtmtut .suite_box.major-arcana {
    min-height: 285px;
}

.suite_box h2 {
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    text-align: center;
    flex-shrink: 0;
}

.suite_box .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex-grow: 1;
}

.at_card {
    width: 50px !important;
    height: auto;
    margin: 0 !important;
    cursor: grab;
    transition: transform 0.2s;
    flex-shrink: 0;
    border: 1px solid #333 !important;
}

.at_card:hover {
    transform: scale(1.1);
}

.at_card.dragging {
    opacity: 0.5;
    cursor: grabbing;
}

.board {
    min-height: 500px;
    border: 3px dashed #333;
    border-radius: 10px;
    background-color: #f0f0f0;
    position: relative;
    margin-top: 20px;
    padding: 20px;
}

.board h1 {
    text-align: center;
    margin-bottom: 20px;
}

.board-card {
    position: absolute;
    width: 100px;
    height: auto;
    cursor: move;
    border: 2px solid #333;
    border-radius: 8px;
    z-index: 10;
}

.board-card:hover {
    border-color: #007bff;
}

.drop-zone {
    border-color: #007bff;
    background-color: #e6f3ff;
}

.fullscreen-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #333;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    z-index: 100;
    transition: all 0.3s ease;
    user-select: none;
}

.fullscreen-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.refresh-toggle {
    position: absolute;
    top: 10px;
    right: 70px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #333;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    z-index: 100;
    transition: all 0.3s ease;
    user-select: none;
}

.refresh-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.board.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    border-radius: 0;
    margin: 0;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.board.fullscreen .fullscreen-toggle {
    background: rgba(0, 0, 0, 0.1);
    border-color: #666;
    color: #333;
}