﻿.status-modal .modal-dialog {
    max-width: auto;
    margin: 1.75rem auto;
}

.status-container {
    width: 370px;
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    height: 620px;
}

.status-indicators {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    gap: 3px;
}

.indicator {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2px;
    overflow: hidden;
}

.indicator-progress {
    height: 100%;
    background: rgb(200, 0, 0);
    width: 0%;
    transition: width 0.1s linear;
}

.indicator.completed .indicator-progress {
    width: 100%;
}

.status-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    .status-image.active {
        opacity: 1;
    }

.status-header {
    position: absolute;
    top: 50px;
    left: 15px;
    right: 15px;
    z-index: 10;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    display: none;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.user-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.user-info small {
    font-size: 12px;
    opacity: 0.8;
}

.status-controls {
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

    .control-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        color: white;
    }

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-body {
    padding: 0;
}

.tap-areas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
}

.tap-left, .tap-right {
    flex: 1;
    cursor: pointer;
}



.profile-list {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.profile-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .profile-card:hover {
        transform: translateY(-5px);
    }

    .profile-card img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .profile-card h6 {
        margin: 0;
        font-size: 14px;
    }

    .profile-card small {
        color: #666;
    }

.story-buy-btn {
    width: 100%;
    background: rgba(200, 0, 0);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
}

.stories {
    cursor:pointer;
}